获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 为什么公众号添加新注册小程序无法复用微信认证?
我添加注册新小程序,打开验证邮箱就显示图1界面,然后登录就需要填写各种信息,并且要支付微信认证费用。为什么变成这样了。 [图片] [图片]
07-15 - 微信认证复用问题?
我公众号完成微信认证,关联的小程序为什么没有复用,新创建的小程序可以选择复用,旧的不可以复用吗
07-14 - 在我们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