- wx.startBluetoothDevicesDiscovery无法搜索到手机设备?
wx.startBluetoothDevicesDiscovery搜索过程中无法搜索到手机设备其次我们公司需要蓝牙搜索到的设备蓝牙芯片是支持常规蓝牙搜索和ble蓝牙搜索 小程序定位授权我们也通过 wx.getLocation 和 wx.getSetting 必须让客户强制开启了 手机信号 meta20pro 微信版本: 8.0.6
2021-06-17 - 企微JSSDK配置问题
0,前端vue,后端java 1,问题截图 [图片] 2,通过 npm install weixin-js-sdk 安装 jssdk,然后通过 import wx from 'weixin-js-sdk' 进行引入到页面 3,wx.config 按照官方要求,传 appId,timestamp,nonceStr,signature 四个参数,jsApiList配置如下 jsApiList: [ 'checkJsApi', 'onMenuShareTimeline', 'onMenuShareAppMessage', 'onMenuShareQQ', 'onMenuShareWeibo', 'hideMenuItems', 'showMenuItems', 'hideAllNonBaseMenuItem', 'showAllNonBaseMenuItem', 'translateVoice', 'startRecord', 'stopRecord', 'onRecordEnd', 'playVoice', 'pauseVoice', 'stopVoice', 'uploadVoice', 'downloadVoice', 'chooseImage', 'previewImage', 'uploadImage', 'downloadImage', 'getNetworkType', 'openLocation', 'getLocation', 'hideOptionMenu', 'showOptionMenu', 'closeWindow', 'scanQRCode', 'chooseWXPay', 'openProductSpecificView', 'addCard', 'chooseCard', 'openCard', 'openAddress', 'sendChatMessage', 'openUserProfile', 'getCurExternalContact', 'getCurExternalChat' ] 4,wx.ready 里面调用 wx.agentConfig 传入 corpid,agentid,timestamp,nonceStr,signature,jsApiList配置如下 jsApiList: ['openUserProfile', 'getCurExternalContact', 'getCurExternalChat', 'sendChatMessage'], 5,聊天工具栏分享消息到会话 wx.invoke('sendChatMessage', { msgtype:"text", //消息类型,必填 text: { content:"你好", //文本内容 }, function(res) { if (res.err_msg == 'sendChatMessage:ok') { } } }) 按道理说一步步按照官方文档来做,应该是不会出错的,但是我们点击发送按钮触发 sendChatMessage接口的时候,无法成功,同时 preVerifyJSAPI:fail 这个错误只触发了一次之后就没有任何触发了。
2020-06-10 - ios与安卓文字无法垂直居中?
<view> <view> 视频 </view> <view> 这是标题 </view> <view> 下图是效果: 采用flex布局 给视频两个字这是了高度/背景/圆角,但是在ios里面就是无法相对垂直居中 [图片]
2020-01-11 - 小程序多层循环嵌套,怎么获取一个连续的index?
代码: <block wx:for="{{info.catalog}}" wx:key="{{index}}"> <view class="wsui-flex wsui-main--between wsui-cross--center lesson-item lesson-bg"> <view class="flex-grow-1 wsui-elip1 title">{{item}}</view> <view class="icon icon-gengduoyouhua"></view> </view> <block wx:for="{{info.catalog_child[index]}}" wx:key="{{itemm}}" wx:for-item="itemm" wx:for-index="indexx"> <view class="wsui-flex wsui-main--between wsui-cross--center lesson-item lesson-sec"> <view class="flex-grow-1 wsui-elip1 title">{{index}}.{{itemm}}</view> </view> </block> </block> 要求做到如下样式 [图片]
2019-12-18