下了包一样没用,预览正常,但是真机调试就不行
小程序真机调试闪退小程序真机调试闪退 我在电脑上面真机调试没有问题,别的管理员扫码就闪退,什么问题啊
2019-02-14ytest: function () { console.log('ytest'); } module.exports={ytest:ytest} VM5469:5 file: utils/chklogin.js unknown: Unexpected token (1:16) > 1 | ytest: function () | ^ 2 | { 3 | console.log('ytest'); 4 | }
全局共享函数的问题小程序的全局函数怎么定义啊,比如在common.js 中定义成a:function( ){}报错,定义成a=function(){}不报错 module.exports.a=a,在调用时在页头 var utils = require('../../utils/util.js'),使用utils.a会报没有定义,要怎么做呢
2019-01-04pages/index/index发布的小程序是有这一页的[图片] ,我就是因为用其它程序生成时发送总报错"47001:data format error hint",我三个接口全试了,才改到另一个还没上线的小程序中测试这个东西,看是咋回事的,结果三个接口全试了还是一样不行,改参数名,去掉参数,都不行,只是报的错不同而已,我按官方文档做的不行,按网上其它人说的也不行,有没有其它什么状况会影响这个玩意儿
生成二维码问题总报41030:invalid page hint:我试着在测试用的小程序中生成已发布过的小程序的二维码总不成功,总是报 41030:invalid page hint: [dFECjA0751b464] 如果在POST中把access_token:res.data.access_token也做一个参数就会报47001:data format error hint 这是什么问题呢 wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=正在使用中的小程序appid&secret=正在使用中的小程序appscret', method: 'GET', header: { 'content-type': 'application/json;charset=utf-8' // 默认值 }, success(res) { console.log("success:" + res.data.access_token), wx.request({ url: 'https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token='+res.data.access_token, method: 'POST', header: { 'content-type':'application/json;charset=utf-8' // 默认值 }, data:{ // access_token:res.data.access_token,//启用报47001:data format error hint scene:'9000', page:'pages/index/index' },
2018-12-28