0
我有一個解析服務器安裝expressjs像here。expressjs不會拋出解析查詢錯誤(解析服務器)
但有時它不會在解析函數中顯示錯誤。例如:顯示
// Parse Server is setup
// Parse Server plays nicely with the rest of your web routes
app.get('/', function(req, res) {
var pageQuery = new Parse.Query('Page');
pageQuery.get('id').then(function(page) {
someObject.undefinedProp = false;
res.send(page);
}, function(error) {
res.send(error);
});
});
沒有錯誤,但與此代碼:
// Parse Server is setup
// Parse Server plays nicely with the rest of your web routes
app.get('/', function(req, res) {
someObject.undefinedProp = false;
res.send('ok');
});
我已經顯示這樣的錯誤:
ReferenceError: someObject is not defined
(在這個例子中我具有完全相同的結構與Parse Server Example)
我只想讓我的解析函數中顯示錯誤。
任何想法?
謝謝你的幫助!
好的謝謝你! – Poltib