我有一个名为LangDataService.isDataReady的变量,它是一个可以
解决的Promise.一旦
解决了一些逻辑就会发生.我怎么能把它传递给Promise?
LangDataService.isDataReady.then(function () {
this.modalOn()
});
我知道我可以缓存var self_ = this;但我对其他选择感到好奇吗?
LangDataService.isDataReady.then(function () {
this.modalOn()
}.bind(this));
原文链接:https://www.f2er.com/js/155988.html