Dojo API略解续

Dojo字符串与数组处理
本文介绍了Dojo库中处理字符串和数组的各种实用方法,包括字符串格式化、判断、转换等,以及数组的映射、过滤和遍历等功能。
dojo.lang.string
dojo.string.substituteParams类似C#中的String.Format函数 
%{name}要保证与传入的对象的名称大小写一致,否则会出异常 
Usage Example: 
dojo.string.substituteParams("%{0} - %{1} - %{2}", "a", "b", "c"); //will return "a - b - c" 
dojo.string.substituteParams("%{name}: %{value}", {name:"名称",value:"值"}); //will return "名称: 值"
dojo.string.capitalize把每一个单词的首字母大写 
Usage Example: 
dojo.string.capitalize("show me love"); //will return "Show Me Love"
dojo.string.isBlank判断输入字符串是否为空或全是空白字符,如果传入对象为非字符串则也会返回true 
Usage Example: 
dojo.string.isBlank(" 1 "); //will return false
dojo.string.escape参数1为type,可传值为: xml/html/xhtml, sql, regexp/regex, javas cript/js cript/js, ascii 
将按照所传type对字符串进行编码 
Usage Example: 
dojo.string.escape("html", "<input type='text' value='' />"); //will return "<input 
type='text' value='' />" 
dojo.string.encodeAscii 
dojo.string.escapeXml 
dojo.string.escapeSql 
dojo.string.escapeRegExp 
dojo.string.escapeJavas cript 
dojo.string.escapeString 
这些函数也就是 dojo.string.escape 所调用的,这里无需多说
dojo.string.summary取得输入字符串的缩略版本 
Usage Example: 
dojo.string.summary("1234567890", 5); //will return "12345..."
dojo.string.endsWith判断输入字符串是否以指定的字符串结尾 
Usage Example: 
dojo.string.endsWith("abcde", "E"); //will return false 
dojo.string.endsWith("abcde", "E", true); //will return true
dojo.string.endsWithAny判断输入字符串是否以指定的任意字符串结尾 
Usage Example: 
dojo.string.endsWithAny("abcde", "E", "e"); //will return true
dojo.string.startsWith判断输入字符串是否以指定的字符串开头 
Usage Example: 
dojo.string.startsWith("abcde", "A"); //will return false 
dojo.string.startsWith("abcde", "A", true); //will return true
dojo.string.startsWithAny判断输入字符串是否以指定的任意字符串开头 
Usage Example: 
dojo.string.startsWithAny("abcde", "A", "a"); //will return true
dojo.string.has判断输入字符串是否含有任意指定的字符串 
Usage Example: 
dojo.string.has("abcde", "1", "23", "abc"); //will return true
dojo.string.normalizeNewlines按要求转换回车换行的格式 
Usage Example: 
dojo.string.normalizeNewlines("a\r\nb\r\n", "\r"); //will return "a\rb\r"
dojo.string.splitEscaped将字符串按分隔符转换为数组 
Usage Example: 
dojo.string.splitEscaped("a\\_b_c", '_'); //will return ["a\\_b", "c"]

模块:dojo.lang.func 
dojo.lang.hitch将指定的方法挂在指定的对象下并返回该方法 
Usage Example: 
func = {test: function(s) {alert(s)}}; 
dojo.lang.mixin(func, {demo: dojo.lang.hitch(func, "test")}); 
func.demo("demo and test are same method");
dojo.lang.forward返回自身对象的指定名称的方法引用 
Usage Example: 
func = {test: function(s) {alert(s)}, demo: dojo.lang.forward("test")}; 
func.demo("demo and test are same method");
dojo.lang.curryWhat is curry? 请参阅这篇文章:http://www.svendtofte.com/code/curried_javas cript/ 
Usage Example: 
function add(a, b) 

return a + b; 

dojo.lang.curry(null, add, 2, 3); //will return 5 
dojo.lang.curry(null, add, 2)(3); //will return 5

dojo.lang.curry(null, add)(2)(3); //will return 5 
dojo.lang.curry(null, add)()(2)(3); //will return 5
dojo.lang.curryArguments与dojo.lang.curry类似,但是可以选择忽略掉前n个参数 
Usage Example: 
function add(a, b) 

return a + b; 

dojo.lang.curryArguments(null, add, [1,2,3,4,5], 2); //will return 7 (= 3 + 4)

处理数组相关api

dojo.lang.has判断对象是否具有指定属性,不过这个方法有用吗,不如直接使用 if(name in obj) 
Usage Example: 
dojo.lang.has(dojo.lang, "has"); //will return true
dojo.lang.isEmpty判断对象或数组是否为空 
Usage Example: 
dojo.lang.isEmpty({a: 1}); //will return false 
dojo.lang.isEmpty([]); //will return true
dojo.lang.map调用指定的方法处理指定的数组或字符串 
Usage Example: 
dojo.lang.map([1,2,3,4,5], function(x) { return x * x;}); //will return [1,4,9,16,25]
dojo.lang.forEach遍历指定的数组或字符串,并对其中的元素调用指定的方法 
Usage Example: 
dojo.lang.forEach("abc", function(x) { alert(x); });
dojo.lang.every检查指定的数组是否全部满足指定方法的条件 
Usage Example: 
dojo.lang.every([1,-2,3], function(x) { return x > 0; }); //指定的数组不是全大于0的,因此返回false
dojo.lang.some检查指定的数组是否部分满足指定方法的条件 
Usage Example: 
dojo.lang.some([1,-2,3], function(x) { return x > 0; }); //指定的数组有大于0的元素,因此返回true
dojo.lang.filter根据指定的方法来过滤指定的数组 
Usage Example: 
dojo.lang.filter([1,-2,3], function(x) { return x > 0; }); //will return [1, 3]
dojo.lang.unnest把指定的参数或数组转换为一维数组 
Usage Example: 
dojo.lang.unnest(1, 2, 3); //will return [1, 2, 3] 
dojo.lang.unnest(1, [2, [3], [[[4]]]]); //will return [1, 2, 3, 4]
dojo.lang.toArray将输入转换为数组 
Usage Example: 
function test() 

return dojo.lang.toArray(arguments, 1); 

test(1,2,3,4,5); //will return [2,3,4,5]
分类:  JAVASCRIPT, Dojo


本文转自左正博客园博客,原文链接:http://www.cnblogs.com/soundcode/archive/2011/07/26/2117533.html,如需转载请自行联系原作者
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值