如果是找不到entity,可以查看AreaDao.xml配置的parameterType或resultType是否写错
2018-03-24
跳转的操作 不应该限制 去掉if判断
if (undefined == that.data.id) {
wx.redirectTo({
url: '../house/house'
})
}
if (undefined == that.data.id) {
wx.redirectTo({
url: '../house/house'
})
}
2018-03-22
正确写法:
if (undefined == options.id) {
return; //此处表明为新增操作(没有传id过来)
} else {
//页面初始化 options为页面跳转所带来的参数
this.setData({
id: options.id
})
}
if (undefined == options.id) {
return; //此处表明为新增操作(没有传id过来)
} else {
//页面初始化 options为页面跳转所带来的参数
this.setData({
id: options.id
})
}
2018-03-22
有人遇到过吗:request:fail invalid url "http:127.0.0.1:8080
URL无效啊
URL无效啊
2018-03-17