我想知道我是否有这样的单例对象
var A = require("js/A");
var singleton = {
obj : null,
current: function() {
if(!this.obj){
this.fetch();
}
return this.obj;
},
fetch: function() {
A.fetch().then(function(result){
this.obj = result;
});
}
}
那么它是否等待我们的时候获取回来return this.obj
?