function test() {
var name = 'tom';
var obj = {
name: 'jack',
nick: 'halun',
frind: this.name+" "+this.nick,
print: function (){
console.log(this.name);
}
}
console.log(obj.frind);
obj.print();
}
test();
在给 obj 赋值时,node 环境下无法访问到 this.namevv
请问这是什么原因
相关分类