js 对象的深层嵌套函数对对象属性的访问
Posted ax=null
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 对象的深层嵌套函数对对象属性的访问相关的知识,希望对你有一定的参考价值。
var obj = { foo: "hi", f1: function() { function f2(that) { console.log(that); } f2(this.foo); } }; obj.f1(); // hi Function.prototype.foo = "hello"; Function.prototype.f = function() { var that = this; setTimeout(function(that){ console.log(that.foo); }, 100, that); } Function.prototype.f(); // hello
以上是关于js 对象的深层嵌套函数对对象属性的访问的主要内容,如果未能解决你的问题,请参考以下文章
Json Schema:仅当深层嵌套对象中存在特定属性时才需要属性
Vue:深层嵌套对象上的观察者会记录 oldVal 和 newVal 吗?