- 小程序不进行微信认证有啥具体后果?
小程序不进行微信认证有啥具体后果;一直想找人工客户咨询,但是一直找不到,只能在这发帖
2023-12-05 - 微信开发config配置成功之后,微信分享出去的还是原链接,不是配置好的图文?
wx.config({ debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId: res.data.data.appId, // 必填,企业号的唯一标识,此处填写企业号corpid timestamp:""+res.data.data.timestamp, // 必填,生成签名的时间戳 nonceStr: res.data.data.nonceStr, // 必填,生成签名的随机串 signature: res.data.data.signature, // 必填,签名,见附录1 jsApiList: ['updateAppMessageShareData'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.checkJsApi({ jsApiList: [ "updateAppMessageShareData" ], success: function(res) { console.log(res) } }); wx.error(function(res){ console.log(res) }); wx.ready(function(){ wx.updateAppMessageShareData({ title: "【疯抢中..】余杭区儿童联盟千人狂抢!不超值,拿锤砸!手快有!手慢无!", desc: "我刚抢了,你也快来抢吧~~还有红包呢!", link:url, imgUrl: "https://sjimg.95qy.cn/21?imageView2/1/w/200/h/200/q/85", success: function() {} }); });
2020-06-11 - 小程序页面存在:无法加载完整数据内容、页面白屏等情形,暂无法体验小程序核心功能?
这个是要把页面的那些分类的数据全部加上吗,具体是哪个页面能说明下吗?把页面去掉是不是也可以?
2020-05-27 - 直播推流组件按照官方调用之后,点击开始一点反应也没有,也不报错,不知道原因在哪里?是我没有权限吗?
<view class="page-body"> <view class="page-section tc"> <live-pusher id="pusher" url="直播推流地址" mode="RTC" autopush bindstatechange="statechange" /> <view class="btn-area"> <button bindtap="bindStart" class="page-body-button" type="primary">播放推流</button> <button bindtap="bindPause" class="page-body-button" type="primary">暂停推流</button> <button bindtap="bindStop" class="page-body-button" type="primary">停止推流</button> <button bindtap="bindResume" class="page-body-button" type="primary">恢复推流</button> <button bindtap="bindSwitchCamera" class="page-body-button" type="primary">切换前后摄像头</button> </view> </view> </view> js onReady(res) { this.ctx = wx.createLivePusherContext('pusher') }, statechange(e) { console.log('live-pusher code:', e.detail.code) }, bindStart() { this.ctx.start({ success: res => { console.log(1) console.log('start success') }, fail: res => { console.log('start fail') } }) }, bindPause() { this.ctx.pause({ success: res => { console.log('pause success') }, fail: res => { console.log('pause fail') } }) }, bindStop() { this.ctx.stop({ success: res => { console.log('stop success') }, fail: res => { console.log('stop fail') } }) }, bindResume() { this.ctx.resume({ success: res => { console.log('resume success') }, fail: res => { console.log('resume fail') } }) }, bindSwitchCamera() { this.ctx.switchCamera({ success: res => { console.log('switchCamera success') }, fail: res => { console.log('switchCamera fail') } }) },
2020-03-28