switch (true) {
case this.status === 0 && data.type === 1:
case (this.status === 2 || this.status === 3) && data.status === 2:
this.nextBtnIsOk = true
break;
default:
break;
}
if (
(this.status === 0 && data.type === 1) ||
((this.status === 2 || this.status === 3) && data.status === 2)
) {
this.nextBtnIsOk = true;
}
投个票,大家习惯写哪种格式?两种都可以,看团队代码风格。
主要是 if else 的括号太多,看着有点累,哈哈。。
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.