我不是在寻找基于代码的解决方案,但我更倾向于解释我遇到的问题。
对于我正在开发的应用程序,后端是我的领域,我的同事负责前端。我的同事离开时没有任何文件可以帮助我解决这个问题,因此我要求StackOverflow提供一些帮助。
应用程序正在运行,一切正常,除了一位。在应用程序的某一点上,客户端breeze调用SaveChanges方法,该方法(应用程序中的其他位置)触发服务器上的SaveChanges方法。在此特定实例中,SaveChanges方法返回.succeed并在控制台中传递(自定义?)通知以保存更改。 但是,服务器没有接到任何电话,在网络日志中我看不到任何电话。你能指出一个可能导致这种情况的方向吗?所以我能理解这个问题以解决未来的问题吗?提前致谢。
function saveChanges(request, options, onSuccess, onFailure) {
if (options) {
if (!options.hasFlight) {
_.forEach(request.FlightRequests, function (val) {
removeFlight(request, val, true);
});
}
if (!options.hasFerry) {
_.forEach(request.FerryRequests, function (val) {
removeFerry(request, val);
});
}
if (!options.hasEurotunnel) {
_.forEach(request.EuroTunnelRequests, function (val) {
removeEurotunnel(request, val);
});
}
if (!options.hasRentalCar) {
_.forEach(request.RentalCarRequests, function (val) {
removeRentalcar(request, val);
});
}
if (!options.hasTaxi) {
_.forEach(request.TaxiRequests, function (val) {
removeTaxi(request, val);
});
}
if (!options.hasAccommodation) {
_.forEach(request.Accommodations, function (val) {
removeAccommodation(request, val);
});
}
}
return manager.saveChanges()
.then(saveSucceeded)
.catch(saveFailed);
function saveSucceeded(result) {
console.log('Successfully saved all changes');
onSuccess(result);
}
function saveFailed(error) {
var reason = error.message;
var detail = error.detail;
if (error.entityErrors) {
handleSaveValidationError(error);
} else if (detail && detail.ExceptionType &&
detail.ExceptionType.indexOf('OptimisticConcurrencyException') !== -1) {
reason = 'Another user, perhaps the server itself, may have deleted '
+ 'the request you are currenty working on. Please try saving again, '
+ 'or reload this web page.';
} else {
reason = 'Failed to save changes: ' + reason + ' You may have to reload this web page.';
}
console.log(detail.ExceptionType);
console.log(error, reason);
onFailure(error, reason);
}
}
此代码适用于所有保存,但应用程序中的此单点除外。
答案 0 :(得分:0)
如果您在manager.hasChanges()
行前检查manager.saveChanges()
,是否会返回false?如果是,则不会向服务器发送请求(breezejs代码here)。
Here's an example将hasChanges方法与saveChanges一起使用。