个人案例
白酒值得买
防控疫情,自主上报体温,单位统一收集!
体温上报扫码体验
新小店
小程序社交电商平台,一键授权,2分钟拥有自己的小程序社交电商平台
新小店-社交电商平台扫码体验
公司招聘的UI,也有一些是外包的UI
你们都在用什么UI?有什么优缺点吗?RT
2021-11-16请问下你这边现在解决了吗?我也遇到这个问题
微信小程序中调起付款码时,出现errMsg: "openOfflinePayView:fail"?wx.openOfflinePayView 接口权限已向服务商申请开通,之前是提示 fail no permission的,权限开通后调起微信付款码时,出现 openOfflinePayView:fail, 签名结果与支付接口调试工具签名结果一致,目前还尚未找到具体原因,寻求帮助 wx.request({ url: 'sign-url', success: function(response) { if(response.data.errcode==0) { wx.openOfflinePayView({ appId: response.data.appId, timeStamp: response.data.timeStamp, nonceStr: response.data.nonceStr, package: response.data.package, // package格式为:mch_id=商户号 signType: "MD5", paySign: response.data.paySign, success: function(a) { console.log(a); }, fail: function(a) { console.log(a); }, complete: function(a) { console.log(a); } }); } } })
2021-11-12你好,请问你有解决这个问题吗?我也遇到了
微信小程序中调起付款码时,出现errMsg: "openOfflinePayView:fail"?wx.openOfflinePayView 接口权限已向服务商申请开通,之前是提示 fail no permission的,权限开通后调起微信付款码时,出现 openOfflinePayView:fail, 签名结果与支付接口调试工具签名结果一致,目前还尚未找到具体原因 wx.request({ url: 'sign-url', success: function(response) { if(response.data.errcode==0) { wx.openOfflinePayView({ appId: response.data.appId, timeStamp: response.data.timeStamp, nonceStr: response.data.nonceStr, package: response.data.package, // package格式为:mch_id=商户号 signType: "MD5", paySign: response.data.paySign, success: function (a) { console.log(a); }, fail: function (a) { console.log(a); }, complete: function (a) { console.log(a); } }); } } })
2021-11-12走web-view,如果主体不一致,要关联一下公众号跟小程序就可以了
微信小程序如何打开同主体公众号文章? 如何打开不同主体(其他公众号)的文章?微信小程序如何打开同主体的公众号文章?微信小程序如何打开不同主体(其他公众号)的文章?
2021-11-08申请成功后,还得自己去添加模板到自己的模板库吧
模板消息申请通过后找不到了?申请的添加了模板消息,收到通知已审核通过了。但是在模板库里还是不到添加的模板消息
2021-11-08自己没有git版本管理?
微信小程序已上传的代码能否找回?1202年了,这个功能实现了吗
2021-11-03牛逼牛逼
该文档涉黄https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Batch_Sends_and_Originality_Checks.html[图片]
2021-06-01才5个小时,急什么呢? 官方说7个工作日的
为什么最近小程序审核好慢,都快5个小时了?为什么最近小程序审核好慢,都快5个小时了?
2021-06-01zhuce()函数用这个写
如何在success回调函数中调用this.data的数据?zhuce: function () { let that = this; if (that.data.username.length == 0 || that.data.password.length == 0 || that.data.password == "" || that.data.password == "") { wx.showModal({ title: '账号或密码不能为空!', }) } else if (that.data.username.length < 10) { wx.showModal({ title: '账号格式不正确!', }) } else if (that.data.password.length < 6) { wx.showModal({ title: '密码位数不能少于6位!', }) } else { console.log("Hello,用户:" + this.data.username + "\npassword:" + this.data.password); wx.request({ url: 'http://localhost:8088/demo/User/ListByStuNo', method: 'GET', header: { 'content-type': 'application/x-www-form-urlencoded' }, data: { 'stuNo': this.data.username, }, success: function (res) { console.log("回调函数:" + res.data); var ResData = res.data; if (ResData == true) { wx.showModal({ title: '用户已存在!', duration: 2000 }) } else { wx.request({ url: 'http://localhost:8088/demo/User/register', method: 'POST', header: { 'content-type': 'application/x-www-form-urlencoded' }, data: { 'stuNo': that.data.username, 'passWord': that.data.password }, success: function (res) { console.log("回调函数:" + res.data); var ResData = res.data; if (ResData == true) { wx.showModal({ title: '注册成功!', duration: 2000 }) wx.redirectTo({ url: '../denglu/denglu', }) } else { wx.showModal({ title: '注册失败!', duration: 2000 }) } } }) } } }) } }, 这里的success回调中是闭包的,我的第二个获取this.data.username显示data未定义,就是调用不成功! 请问大佬们我该如何做才能保证我的第二个也能用上data里的数据
2021-05-14找客服咨询一下吧
公众号迁移中,显示“检测到帐号正处于能力封禁期,请在能力封禁处罚结束后再发起迁移流程。”?没查到有站内信,之前有处罚但是时间已经过了。
2021-05-14