比方说:
Foo.user = Ember.Object.extend({
username:null,
name:null,
loadData:function(data){
_.each(data, function(value, key){
console.log(this.hasOwnProperty(String(key)), key, String(key));
console.log((String(key) in this));
console.log(key in this.__proto__);
console.log(_.has(this, key));
...
});
},
})
其中数据是一个对象 ex。JSON
是否有任何 Ember 测试方式或只是 JS OO 方式?
是的,它是下划线... ;)