获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 在我们APP跳转微信支付,完成后跳转到其他APP,如果没有安装那个APP可以正常回到我们APP
在我们APP跳转微信支付,完成后跳转到其他APP,如果没有安装那个APP可以正常回到我们APP
2022-03-04 - Promise返回值如何赋值
var nickname = ''; getUser.info(data.sendUserId).then(function (res) { nickname = res.nickname console.log(nickname) //有值的 }) console.log(nickname) //无值的
2019-03-27 - success返回值怎么给外部变量赋值
function Info(uid) { var that = this; var head; wx.request({ url: '', data: { }, header: { 'content-type': 'application/json' }, success(res) { that.head = res.data.head; console.log(that.head); } }) console.log(that.head) return that.head; } module.exports.Info = Info;
2018-09-29