- 改变变量字符串中指定字符的颜色
[图片] onLoad: function (options) { console.log('上页面传递参数',options); app.globalData.code=options.code; var str =options.code; this.setData({ sku:app.globalData.code }) }, 这个字符串是扫描条形解析出来的字符,如何给其中的指定字符串变色
2018-11-09 - 可以做聊天小程序吗
需求 再小程序加入聊天功能,是否可以开发聊天小程序
2018-06-26 - 小程序消息推送配置一直失败
[图片] 一直提示token验证失败,但是接口有返回 [图片] 代码如下 public function isValid()//验证微信接口,如果确认是微信就返回它传来的echostr参数 { //1. 将timestamp , nonce , token 按照字典排序 $timestamp = $_GET['timestamp']; Log::info('微信传递的时间戳' . $timestamp); $nonce = $_GET['nonce']; Log::info('微信传递的nonce' . $nonce); $token = "yuanhuan2018"; $signature = $_GET['signature']; Log::info('微信传递的签名' . $signature); $array = array($timestamp, $nonce, $token); $newArr = sort($array); Log::info('排序前的数组' . json_encode($array)); Log::info('排序后的数组' . json_encode($newArr)); //2.将排序后的三个参数拼接后用sha1加密 $tmpstr = implode('', $array); $tmpstr = sha1($tmpstr); Log::info('临时的字符串' . $tmpstr); //3. 将加密后的字符串与 signature 进行对比, 判断该请求是否来自微信 if ($tmpstr == $signature) { Log::info('最后的匹配一致输出字符串echostr' . $_GET['echostr']); echo $_GET['echostr']; exit; } }
2018-04-04 - wx.getConnectedBluetoothDevices
wx.getConnectedBluetoothDevices接口在断开链接之后,重新搜索设备的时候可以获取到IOS已配对的蓝牙设备信息吗
2018-04-02 - IOS蓝牙配对后,就搜索不到已配对蓝牙设备
IOS 蓝牙配对并且杀死小程序再重新搜索,就搜索不到已配对的设备了,有可以调取手机已配对蓝牙设备的几口吗,或者是为什么搜索不到 已配对的设备
2018-03-31