点编辑不显示name和优先级,获取失败但是可以编辑成功

来源:4-8 区域信息编辑页的开发

qq_卿风徐来_0

2019-01-10 17:13

onLoad: function (options) {

var that = this;

that.setData({

areaId: options.areaId

});

if (options.areaId == undefined) {

return;

}

wx.request({

url: "http://localhost:8088/superadmin/getareabyid",

data: {"areaId": options.areaId },

method: 'GET',

success: function (res) {

var area = res.data.area;

if (area == undefined) {

var toastText = '获取数据失败' + res.data.errMsg;

wx.showToast({

title: toastText,

icon: '',

duration: 2000

});

} else {

that.setData({

areaName: area.areaName,

priority: area.priority

});

}

}

});

},


写回答 关注

2回答

  • 幽弥
    2020-08-24 16:09:14

    删除了一样不显示?

    博民

    关了微信开发者重启

    2021-06-09 13:31:56

    共 1 条回复 >

  • qq_卿风徐来_0
    2019-01-11 09:20:59

    找到原因了,当初写异常报告时那个    int a=1/0   没删,wtf!

SpringBoot+MyBatis搭建迷你小程序

SpringBoot+MyBatis搭建小程序后台

91657 学习 · 622 问题

查看课程

相似问题