有三元运算符可以很好的代替if else简单语句
但是在使用的时候发现 与 return使用的时候 需要用这种形式
代码语言:javascript复制错误形式: val ? return 1 ? return 0;
正确形式: return val ? 1 : 0;
示例:
vue
searchQuery() {
if (this.applyReason == undefined) {
this.$message.warning('请选择查询类型')
return
}
this.getRecord()
},
getRecord(){}
简化后:
代码语言:javascript复制 searchQuery() {
return this.applyReason == null ? this.$message.warning('请选择查询类型') : this.getRecord()
},
getRecord(){}
能一行写完绝不多行! 推荐:js一行If … else … else if语句