次のようにFirefoxブラウザのエラー: TypeError: r is undefined
これはクロム ブラウザです: Uncaught TypeError: Cannot read property 'data' of undefined
わかりやすいように動画も作りました。
フィールドの値を変更するとエラーが発生する
ボタンコードの更新
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();
}
});
}