问题模块 框架类型 问题类型 终端类型 操作系统 微信版本 基础库版本
框架 微信小程序 Bug 客户端 iOS 6.6.6 2.0.2
在IOS端定义了 modal的hidden属性为true或者display为none的时候 发生了死机的状况
代码:
modal>
JS:
var app = getApp()
Page({
data: {
ishidden: 'none',
inputdata:'',
currentshowid:null,
},
modalinput: function (e) {
this.setData({
currentshowid: e.currentTarget.dataset.showid,
ishidden: this.data.ishidden=='none' ? 'block' : 'none'
})
},
//取消按钮
cancel: function () {
this.setData({
ishidden: 'none'
});
},
//确认
confirm: function () {
var that = this;
if (that.data.inputdata == '123456'){
that.setData({
ishidden: 'none'
})
} else {
wx.showToast({
title: '口令错误',
icon: 'none',
duration: 2000
})
}
},
})
默认的ishidden为none 结果页面一打开直接微信这个程序就死了 必须关掉微信重新打开
并且打开调试后 点开这个页面 直接关闭调试 微信程序挂掉
但是在PC端的调试页面和Android机上进行测试时不死机 能直接使用
本文网址:http://www.91bianli.com/weixinxiaochengxu/48680.html