- 小程序扫描调用声音
scanBtn() { wx.scanCode({ success: (res) => { this.voice() }, fail: (res) => { } }) //wx.scanCode }, voice: function () { let _this=this const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.obeyMuteSwitch = false innerAudioContext.src = "https://xcx.yearconsports.com/s.mp3" innerAudioContext.play() innerAudioContext.onPlay(() => { console.log('开始播放') }) // innerAudioContext.play(); innerAudioContext.onError((e) => { console.log(e.errMsg) console.log(e.errCode) }) }, 苹果手机在真机调试下有声音,在预览或体验版或上线就没声音。
2020-07-11 - 扫描后调用声音,苹果没有声音?安卓有声音。
scanBtn() { wx.scanCode({ success: (res) => { this.voice() }, fail: (res) => { } }) //wx.scanCode }, voice: function () { let _this=this const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.obeyMuteSwitch = false innerAudioContext.src = "https://xcx.yearconsports.com/s.mp3" innerAudioContext.play() innerAudioContext.onPlay(() => { console.log('开始播放') }) // innerAudioContext.play(); innerAudioContext.onError((e) => { console.log(e.errMsg) console.log(e.errCode) _this.voice() }) }, 上面这段代码苹果手机在【真机调试】下有声音,在【预览或发布体验版或上线】的时候没声音。为什么? 代码片段:https://developers.weixin.qq.com/s/qlXLXKmK75it
2020-07-11 - 《导购助手》导购助手能否自定义生成导购组码,组码可带自定义参数,像生成到导购个人二维码那样?
导购助手能否自定义生成导购组码二维码,组码二维码可带自定义参数,像生成到导购个人二维码那样?自定义生成导购组码二维码。 POST https://api.weixin.qq.com/cgi-bin/guide/guidecreateqrcode?access_token=ACCESS_TOKEN 上面接口是生成个人二维码接口。 有没有生成组码二维码的接口,可自定义参数? 现在组码二维码只能再mp后台下载。
2020-05-07 - 公总号获取菜单显示为空?公总号实际有菜单的
公总号id:wx583a86570809a24f实际有菜单的, 通过https://api.weixin.qq.com/cgi-bin/menu/get?access_token=31_KLefuyYAoYAcwKbfmuxh34F1L0Rm-ehQtu6a0YvgazgbUbnAOPdatclQw6opgEYnPNGTkzyvlrGDKmgw_S6TTgnvn2h40mDOtfpJoR8tTIiTc3LcDf2-0fzeKGWnoFcxQm6JwE3m31935dn5AZHbABAGFN 去获取 返回的值切是{"menu":{"button":[]}} access_Token没错的。 [图片] [图片]
2020-03-19 - 《导购助手》导购助手,拉起微信内微信导购助手小程序,并发起与具体粉丝的对话?
导购通过外部app/小程序,拉起微信内微信导购助手小程序,并发起与具体粉丝的对话,请问这个是如何实现。没找到相对应的API和开发说明? [图片]
2020-03-12 - 导购二维码如何带参数?
我们之前是通过公总号二维码。但参数绑定店铺。即一个店铺一个公总号的关注二维码里面带店铺信息。现在要开启导购助手,我改如何整合呢。有没有说明文档?知道的麻烦告知一下。谢谢
2020-03-11