js编程-层层访问对象属性
程序员文章站
2022-07-15 22:27:19
...
编写一个函数,实现如下访问对象属性
var object = {
b: { c: 4 }, d: [{ e: 5 }, { e: 6 }]
};
console.log( parse(object, 'b.c') == 4 ) //true
console.log( parse(object, 'd[0].e') == 5 ) //true
console.log( parse(object, 'd.0.e') == 5 ) //true
console.log( parse(object, 'd[1].e') == 6 ) //true
console.log( parse(object, 'd.1.e') == 6 ) //true
console.log( parse(object, 'f') == 'undefined' ) //true
编程:
法一:
//使用正则表达式
function parse(obj, str){
return new Function('obj', 'return obj.' + str.replace(/\.(\d+)/g, '\[$1\]'))(obj);
}
- str.replace(/.(\d+)/g, ‘[$1]’):举例str=‘b.c’,改变形式为b[c],即返回obj.b[c]
- new Function(‘obj’,函数体)(obj):直接传入obj参数并调用函数
法二
function parse(obj,str) {
str = str.replace(/\[(\d+)\]/g,'.$1');
arr = str.split('.');
arr.forEach(function(item) {
obj = obj[item];
})
return obj;
}
上一篇: erlang 手动回收内存
下一篇: Halcon 一维条码识别
推荐阅读
-
js变量定义提升、this指针指向、运算符优先级、原型、继承、全局变量污染、对象属性及原型属性优先级
-
详谈js使用in和hasOwnProperty获取对象属性的区别
-
详解js访问对象的属性和方法
-
js 根据对象数组中的属性进行排序实现代码
-
js正则表达式之RegExp对象属性lastIndex,lastMatch,lastParen,lastContext,rightContext属性讲解
-
js正则表达式讲解之index属性(RegExp对象)
-
js正则表达式之input属性($_)RegExp对象属性介绍
-
浅谈js使用in和hasOwnProperty获取对象属性的区别
-
javascript遍历json对象的key和任意js对象属性实例
-
JS高级---实例对象使用属性和方法层层的搜索 (实例对象-->原型对象-->报错)