- 指定内容如何删除?
str={aa:"2",bb:"4",cc:"6"}这个JSON字符串,如何删除某一项,其它保持原格式不变,比如,我删掉bb:"4"这一项,变为{aa:"2",cc:"6"},splice这个是不行,只能删数组的,如果用 delete str[1],好象也是无效的
2021-09-09 - 数组数据量大时,'constructor' 不能用?
Cannot read property 'constructor' of undefined;at api request success callback function TypeError: Cannot read property 'constructor' of undefined, 今天这个数据类型判断突然不能用了,仔细试了一下,发现与数据大小有关系,语句很简单 success: function (res) { console.log(res); //控制台能打印出数据来, if (res.data.constructor!=Array){//报错 小程序对数据大小有限制?上限是多少呢
2021-08-31 - 我用新版的微信小程序开发工具,总出现小程序死掉的状态,而工具的按钮是不会死掉的,怎么回事呢?
版本:v1.02.2003250,在开发工具中点击小程序的某个按钮,跳转到一个页面,再点返回的箭头,再点同一按钮再跳转,基本重复操作两三次,就死掉了,点不动了,也点不了其它的按钮,而工具本身的各种操作还是是没问题的,另外我试了用真机测试,则不会出现死掉的情况,这是什么原因呢,是设置没搞好,还是怎么回事呢。
2020-04-03 - 手机微信小程序取值的不正常
请教个小程序方面的问题,我在开发者工具中用时,input中的值是取的到,为什么在手机上面取值不正常呢,要不取不到值,要不本次还是取的上一次的值, wxml: <view class="weui-search-bar" > <view class="weui-search-bar__form"> <view class="weui-search-bar__box"> <input name="inputdata" class="weui-search-bar__input" placeholder="请输入查询内容" bindblur="iearchInput" /> </view> </view> <button class="weui-search-bar__cancel-btn" bindtap="so"> 搜索 </button> </view> js中: iearchInput:function(e){ var that=this; that.data.sdata=e.detail.value; }, so:function(){ var that = this; var goodsearch = that.data.sdata; if (goodsearch==''){ wx.showModal({ title: '错误', content: that.data.sdata , showCancel: false,//是否显示取消按钮 confirmText: '确定', confirmColor: "red", success: function (res) { if (res.confirm) { } } }) return; } //跳转商品详情 wx.navigateTo({ url: '../shop/brand/brand?goodsname=' + goodsearch }) },
2019-03-06 - 全局共享函数的问题
小程序的全局函数怎么定义啊,比如在common.js 中定义成a:function( ){}报错,定义成a=function(){}不报错 module.exports.a=a,在调用时在页头 var utils = require('../../utils/util.js'),使用utils.a会报没有定义,要怎么做呢
2019-01-04 - 生成二维码问题总报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