qiu8310 / minapp

重新定义微信小程序的开发
https://qiu8310.github.io/minapp/
927 stars 68 forks source link

所有的wx.xxxx 的异步回调 complete 事件 没有返回 #86

Closed mkc-bill closed 6 years ago

mkc-bill commented 6 years ago

image

文档里的也没有返回值 image

qiu8310 commented 6 years ago

complete 都没有返回值吧,因为有可能有error,你要返回值需要用 success 回调

mkc-bill commented 6 years ago

有的,所有的异步返回,success,fail和complete都是有返回值的 image

qiu8310 commented 6 years ago

你也不能依赖 complete 中的返回值,如果调用的是 error 回调,而不是 success 回调,那这里的返回值就可能不能满足你需求了。

还是之前说的,如果你需要使用返回值,尽量使用 success 回调,而不要去使用 complete 中的回调。

或者你使用我提供的 promise 版的 wx 接口 wxp

mkc-bill commented 6 years ago

好的,谢谢