我知道有2种不太方便而且看起来不优雅的方式:
通过然后:
(new TestClass).syncMethod().asyncMethod().then(self => self.anotherSyncMethod())
通过等待:
(await (new TestClass).syncMethod().asyncMethod()).anotherSyncMethod()
我希望它是这样的(伪代码):
(new TestClass).syncMethod().asyncMethod()->anotherSyncMethod()
->
是从异步方法到同步方法的转换。
JS里有类似的东西吗?如果没有的话,以后有没有计划?