更新ボタン ポップアップ剣道グリッドをクリックすると、このエラーが発生するのはなぜですか?
Firefoxブラウザのエラーは次の形式です。
SyntaxError: missing ; before d.0=value
そしてChromeブラウザで:
Uncaught SyntaxError: Unexpected number
このエラーに関する詳細な説明のためにビデオをアップロードしました
コード
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();
}
});
}