vue 三目运算符
时间: 2023-11-03 13:02:34 浏览: 104
三目运算符.cpp
在Vue中,三目运算符可以用于在模板中根据条件来显示不同的内容。其语法形式为:条件 ? 值1 : 值2。当条件成立时,返回值1;否则返回值2。
在你的代码示例中,三目运算符用于根据条件判断是否展示黑白名单、入侵检测、徘徊检测和接打手机这四个任务的结果。如果对应的代码为1,则显示"是";否则显示"否"。
以下是你提供的代码示例的相关部分:
```javascript
this.axios.get("url").then((res) => {
res.data.data.map((item) => {
return this.tableData.push({
name: item.camera_name,
intercept: item.codes.find((item) => {return item == 1}) ? "是" : "否",
invade: item.codes.find((item) => {return item == 2}) ? "是" : "否",
wander: item.codes.find((item) => {return item == 3}) ? "是" : "否",
mobile: item.codes.find((item) => {return item == 10}) ? "是" : "否"
})
})
console.log(this.tableData);}).catch((error) => {
console.log(error);
})
```
阅读全文