function getMDBChanges(syncURL, LastSync, WSName, callback) {
$.ajax({
url: syncURL + WSName,
dataType: "json",
success: function (data) {
callback(data);
},
error: function (model, response) {
Notify("divNoteLeft","Nothing to be Sync'd from the Server with URL " + syncURL + WSName );
}
});
}
这是我正在运行的代码。这工作正常。但我仍然不明白成功回调到底是做什么的。
谢谢你