当我点击更新按钮弹出剑道网格时,怎么会出现这个错误?
Firefox浏览器中的错误是这种形式:
SyntaxError: missing ; before d.0=value
在Chrome浏览器中:
Uncaught SyntaxError: Unexpected number
我已经上传了一个关于这个错误的视频,以便详细说明 n 东西
代码
transport: {
read: {
url: 'https://dl.dropboxusercontent.com/sh/u9oxg5f6uweqh40/CbR3pNVg04/documentj',
dataType: 'json',
type: 'get',
cache: false
},
update: function(e) { return true; }
}
save: function (e) {
var that = this;
$.ajax({
url: '/echo/json',
type: e.model.id == null ? 'POST' : 'PUT',
contentType: 'application/json',
dataType: 'json',
data: JSON.stringify(e.model),
success: function (data) {
// Alertify.log.success(data);
console.log('ok dadasaved');
that.refresh();
},
error: function (data) {
// Alertify.log.error(data);
console.log('no datasaved');
that.cancelRow();
}
});
}