请问这个问题解决了吗?
小程序的消息推送配置好后,URL(服务器地址)配置的后台程序接收不到请求,提示Token校验失败?URL(服务器地址)的配置是:http://xxxxxxx/request.php 具体配置如下: [图片] 但是提交后,request.php没有接收到任何请求,request.php中的打印日志也没有执行,急需求解!! 测试程序是这样的: ob_clean() printLog(json_encode($_GET)); /** * 打印数据 * @param string $txt 日志记录 * @param string $file 日志目录 * @return */ function printLog($txt="",$file="ceshi.log"){ $myfile = fopen($file, "a+"); $StringTxt = "[".date("Y-m-d H:i:s")."]".$txt."\n"; fwrite($myfile, $StringTxt); fclose($myfile); } 我换成CURL去发送GET请求这个地址http://xxxxxxx/request.php,是可以打印日志的,postman也是可以的,有大神指点迷津吗?
2022-04-08已找到原因 [图片]
module "wx-promise-pro" is not defined?安装了wx-promise-pro的nodemodules,引入时报错?已安装最新的nightly版本 [图片]
2020-08-25请问问题解决了吗
主动分享图片变成一块黑屏模拟器上分享图片正常显示,手机上显示一块黑屏 模拟器上:[图片]手机上: [图片]
2018-07-16请问问题解决了吗?遇到类似情况
video层级挡住modalvideo视频的层级挡住了modal [图片] 用cover-view 组件也无法实现,z-index不支持,[图片] [图片]
2018-07-16请问解决了吗?我也遇到类似问题
分包加载使用了分包加载,总包小于4M,单个分包小于2M 本地代码 2794KB, 上周可以上传,今天上传提示源码包超出最大限制 调试基础库1.91
2018-07-02遇到同样的问题,手机型号三星Galaxy s8+,微信版本6.6.7,请问楼主解决了吗
安卓input组件bindinput存在bug<view class='question'> <view class='quest1'> <view class='topic'>姓名</view> <input placeholder='联系人称呼' class='input' bindinput='inputname' maxlength='10'></input> </view> <view class='quest1'> <view class='topic'>手机</view> <input placeholder='请填写手机号码' class='input2' bindinput='inputphone' type='number' maxlength='11'></input> <view class='vertical'></view> <view class='code' bindtap='sendmessage' wx:if="{{send}}">发送验证码</view> <view class='code2' wx:if="{{unsend}}">{{second}}{{sendtext}}</view> </view> <view class='quest2'> <view class='topic'>验证码</view> <input placeholder='请输入收到的验证码' class='input' bindinput='inputcode' type='number'></input> </view> </view> /** * 输入框名字 */ inputname: function (e) { console.log(e.detail.value) this.setData({ name: e.detail.value }) }, /** * 输入框手机号 */ inputphone: function (e) { console.log(e.detail.value) this.setData({ phone: e.detail.value }) }, /** * 输入框验证码 */ inputcode: function (e) { console.log(e.detail.value) this.setData({ code: e.detail.value }) }, 获取到的参数长度为0 或者缺少长度 安卓机型部分出现
2018-06-15