我正在制作一些SPA应用程序。当应用程序在某个时刻运行时,我启动一个方法。那里的一些代码给了我布尔值。我想在“半执行”时停止方法,并且布尔值为false。我需要像break for循环这样的东西,但这可能适用于方法。有可能吗?
感谢您的回答。
if(el === 'work'){
if(!actions.authentication()){
// That code is in another method. I want break that with some code placed here.
}
}
答案 0 :(得分:0)
这很明显,你几乎已经回答了自己,但你可以使用return
...
if(el === "work") {
if(actions.authentication() == false) {
return
}
}