firefox浏览器报错如下:TypeError: r is undefined
这是 chrome 浏览器:未捕获的类型错误:无法读取未定义的属性“数据”
我还做了一个视频以便更好地理解。
当我更改字段中的值时发生错误
按钮代码更新
save: function (e) {
var that = this;
$.ajax({
url: '/api/apdevice',
type: e.model.id == null ? 'POST' : 'PUT',
contentType: 'application/json',
data: JSON.stringify(e.model),
success: function (data) {
alert('yes');
that.refresh();
},
error: function (data) {
alert('no');
that.cancelRow();
}
});
}