在Node with Express中,我有一段这样的代码。
if (req.body.var1 >= req.body.var2){
res.json({success: false, message: "End time must be AFTER start time"});
console.log('Hi')
}
console.log('Hi2')
//other codes
我预计如果var1是> = var2,则会发送响应并执行结束。与Java / C#中的return语句类似
但显然并非如此。发送回复后,“你好”和“嗨”和' Hi2'之后的所有其他代码继续执行。
我想知道如何阻止这种情况发生?
另外,我想知道在什么情况下你真的希望代码在响应已经发送后继续执行。
干杯
答案 0 :(得分:12)
Express只为相匹配的路线调用JavaScript函数。当函数完成/不完整时,没有特别的魔力可知。它只是运行该功能。但是,只要你愿意,它就很容易退出...
您可以使用return
停止执行express中特定路由的回调。它只是JavaScript ......该函数将始终尝试运行完成
app.post('/some/route', (req, res)=> {
if (req.body.var1 >= req.body.var2){
// note the use of `return` here
return res.json({success: false, message: "End time must be AFTER start time"});
// this line will never get called
console.log('Hi')
}
// this code will only happen if the condition above is false
console.log('Hi2')
//other codes
});
有关字符串比较的警告
您正在使用
req.body.var1 >= req.body.var2
所有HTML表单值都以字符串形式发送到服务器。
// javascript string comparison
"4" > "3" //=> true
"4" > "30" //=> true
parseInt("4", 10) > parseInt("30", 10) //=> false
我确定你需要做一个比这更有教养的比较。看起来他们是时间价值观?因此,您可能希望将这些值转换为Date
个对象并进行准确比较。
答案 1 :(得分:5)
只需在res.json
功能之后返回:
res.json({success: false, message: "End time must be AFTER start time"});
return; // This will stop anything else from being run
答案 2 :(得分:2)
您也可以if (req.body.var1 >= req.body.var2){
return res.status(400).json({success: false, message: 'your message'})
}
返回。
//create tabsheet with 4 tabs
private void createTabs() {
TabSheet tabs = new TabSheet();
FirstTab firstTab = new FirstTab();
tabs.addTab(firstTab, "FirstTab");
SecondTab secondTab = new SecondTab();
tabs.addTab(secondTab, "SecondTab");
ThirdTab thirdTab = new ThirdTab();
tabs.addTab(thirdTab, "ThirdTab");
FourthTab fourthTab = new FourthTab();
tabs.addTab(fourthTab, "FourthTab");
vertLayout.addComponent(tabs);
}
//create upload button
private Button uploadButton() {
Button uploadFile = new Button("Upload");
UI.getCurrent().addWindow(new UploadFileWindow());
return uploadFile;
}