- 微信支付
timeStamp,nonceStr',package, signType,HMAC-SHA256,paySign 数据都获取到了为什么还是签名错误啊??? 求告知 以前是可以的 昨天下载替换最新SDK就出问题了 PHP的 [图片] wx.request({ url: base_url + 'pay/request/wxAppPay.php?oid=' + oid, data: { oid: oid }, method: 'GET', // OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT // header: {}, // 设置请求的 header success: function (res) { console.log(res,'回调'); // success wx.requestPayment({ 'timeStamp': res.data.timeStamp, 'nonceStr': res.data.nonceStr, 'package': res.data.package, 'signType': 'HMAC-SHA256', 'paySign': res.data.paySign, 'success': function (res) { wx.showToast({ title: '支付成功', icon: 'success', duration: 2000 }); setTimeout(function () { that.setData({ current: 1, list: [] }) page = 1; render(that); }, 2000); }, 'fail': function (res) { console.log(res); }, 'complete': function (res) { // console.log(res); } }); }, fail: function (res) { // fail // console.log(res); }, complete: function (res) { // complete } })
2018-10-27 - 微信支付
以前 SDK版本有libxml_disable_entity_loader(true); 商务后台 支付关闭了 和我这代码有关系吗???? [图片]
2018-10-27 - 支付签名错误
今天下载最新 sdk版本 后台php的 支付提示签名错误 换成以前的版本就可以 什么问题啊啊
2018-10-26 - scroll-view
[图片] 有的手机有时候 整个scroll-view会上移 导致头部几个分类看不见了 同一个手机 有时候行有时候不行 wxml: <scroll-view class='fir-cate' scroll-y style="height: {{windowHeight}}px;"> <block wx:for="{{cateList}}" wx:key="k"> <view bindtap='bindFirCate' data-cid="{{item.id}}" data-index="{{index}}" class="scroll-view-item {{index == firIdx ? 'on':''}}">{{item.name}}</view> </block> </scroll-view> js: wx.getSystemInfo({ success: function (res) { that.setData({ windowHeight: res.windowHeight }) console.log(res.windowHeight) } }) wxss: .fir-cate{ width: 25%; border-right: 1px solid #e4e4e4; position: fixed; top: 0; } .fir-cate .scroll-view-item{ height: 40px; line-height: 40px; text-align: center; background: #F5F5F5; border-bottom:1px solid #fff; } .fir-cate .on{ background: #fff; color: #6E4EB9; border-left: 3px solid #6E4EB9 }
2018-10-19 - 获取国家信息问题
[图片] 这是怎么保存进去的?
2018-09-18 - 该怎么办
[图片] 为什么这些功能会被封掉???怎样才可以用?????
2018-07-03 - 获取小程序码
获取小程序码 宽度设置小于280就不能再小了???? $width='180'; $colorArr = array('r'=>'55', 'g'=>'180', 'b'=>'54'); $color = json_encode($colorArr); $auto = true; $scene = '1'; $post_data='{"page":"'.$page.'","width":"'.$width.'","scene":"'.$scene.'"}';
2018-06-20 - picker mode="region"
[代码] [图片] [代码][代码]picker mode="region"[代码] [代码] [代码] [代码] [代码] [代码] [代码] 现在添加信息对用户定位(调用的是腾讯地图小程序api 逆地址解析) 获取到的是 (海南省 - 儋州市 - 空) 这没法按 市 区筛选啊 这不矛盾吗?????
2018-06-20 - createInnerAudioContext
[图片] 音频现在切换下一首 编辑器上可以 手机上不行 切换下一首时改变 这2个属性 innerAudioContext.autoplay = true innerAudioContext.src =“” onTimeUpdate里监听的数据duration都没变 onTimeUpdate方法不在执行了 音乐还在继续播放
2018-06-15 - createInnerAudioContext
wx.createInnerAudioContext() seek()后不起作用啊??????偶尔一次有作用
2018-06-14