在official docs,我看到:如何捕捉流星中的任何錯誤信息?
Meteor.call("methodName", function (error) {
// identify the error
if (error.error === "logged-out") {
// show a nice error message
Session.set("errorMessage", "Please log in to post a comment.");
}
});
我要趕在方法例外不管錯誤信息是什麼。是這樣做的:
Meteor.call('insertJobLocationData', companyid, jobloc, function (err) {
if (err) {
Session.set("lastErrMsg", "insertJobLocationData failed");
}
?
是的,當然。 –
我沒有看到你在第二個代碼塊中放置了什麼東西。應該工作 – challett