我有一个函数HelloWorld
,没有向调用者返回任何承诺。我想知道是否可以调整此功能以返回承诺。
例如:
function HelloWorld() {
// Do something here
return;
}
在我的应用程序的另一个功能中,我想做:
...
return HelloWorld()
.then( ... do something else here ... );
如何继续让这个函数返回一个承诺?
我有一个函数HelloWorld
,没有向调用者返回任何承诺。我想知道是否可以调整此功能以返回承诺。
例如:
function HelloWorld() {
// Do something here
return;
}
在我的应用程序的另一个功能中,我想做:
...
return HelloWorld()
.then( ... do something else here ... );
如何继续让这个函数返回一个承诺?