为啥当值为假时我不能传递过滤数据(它是布尔值)

Posted

技术标签:

【中文标题】为啥当值为假时我不能传递过滤数据(它是布尔值)【英文标题】:Why I cannot pass filtered data when the value is false (it is boolean value)为什么当值为假时我不能传递过滤数据(它是布尔值) 【发布时间】:2020-05-14 05:16:43 【问题描述】:

我尝试使用 vuetify 过滤我的数据表,当我尝试使用 v-select 值 true(布尔数据类型)进行过滤时,它工作完成:隐藏/过滤了 false 值。

但是当我尝试过滤虚假值时,真实值仍然存在。所以表值显示两个数据都包含 done: true & done: false

这是我的代码:

    <template>
<div>
  <v-card md12>
    <v-card-actions class="justify-center">
    </v-card-actions>
    <v-card-title>
      Nutrition
      <v-spacer></v-spacer>
      <v-select 
      label="Status" 
      :items="[false,true]"
      v-model='dessertsStatus'
      ></v-select>
       <!-- <v-checkbox 
          v-model="dessertsStatus" 
          class="mx-2" 
          label="Status">
      </v-checkbox> -->
      <v-spacer></v-spacer>
      <v-text-field
        v-model="search"
        append-icon="search"
        label="Search"
        single-line
        hide-details
      ></v-text-field>
    </v-card-title>
    <v-data-table
      :headers="headers"
      :items="filteredItems"
      :search="search"
      show-expand
      item-key="name"
    >
    <template #expanded-item="headers,item">
        <td :colspan="headers.length">
        item.name
        item.calories
        </td>
    </template>
    <template v-slot:item.action=" item ">
      <v-icon
        color="green"
        medium
        @click="deleteItem(item)"
      >
        check_circle
      </v-icon>
    </template>
    </v-data-table>
  </v-card>
</div>
</template>

<script>
  export default 
    logout() 
        
            this.$router.push("/login")
        ,
    data () 
      return 
        search: '',
        headers: [
          
            text: 'Dessert (100g serving)',
            align: 'left',
            sortable: false,
            value: 'name',
          ,
           text: 'Calories', value: 'calories' ,
           text: 'Fat (g)', value: 'fat' ,
           text: 'Carbs (g)', value: 'carbs' ,
           text: 'Protein (g)', value: 'protein' ,
           text: 'Iron (%)', value: 'iron' ,
           text: 'Actions', value: 'action', sortable: false ,
          //  text: 'Status Done', value: 'done' ,
        ],
        desserts: [
          
            name: 'Frozen Yogurt',
            calories: 159,
            fat: 6.0,
            carbs: 24,
            protein: 4.0,
            iron: '1%',
            done: true,
          ,
          
            name: 'Ice cream sandwich',
            calories: 237,
            fat: 9.0,
            carbs: 37,
            protein: 4.3,
            iron: '1%',
            done: false,
          ,
          
            name: 'Eclair',
            calories: 262,
            fat: 16.0,
            carbs: 23,
            protein: 6.0,
            iron: '7%',
            done: false,
          ,
          
            name: 'Cupcake',
            calories: 305,
            fat: 3.7,
            carbs: 67,
            protein: 4.3,
            iron: '8%',
            done: true,
          ,
          
            name: 'Gingerbread',
            calories: 356,
            fat: 16.0,
            carbs: 49,
            protein: 3.9,
            iron: '16%',
            done: false,
          ,
          
            name: 'Jelly bean',
            calories: 375,
            fat: 0.0,
            carbs: 94,
            protein: 0.0,
            iron: '0%',
            done: true,
          ,
          
            name: 'Lollipop',
            calories: 392,
            fat: 0.2,
            carbs: 98,
            protein: 0,
            iron: '2%',
            done: false,
          ,
          
            name: 'Honeycomb',
            calories: 408,
            fat: 3.2,
            carbs: 87,
            protein: 6.5,
            iron: '45%',
            done: false,
          ,
          
            name: 'Donut',
            calories: 452,
            fat: 25.0,
            carbs: 51,
            protein: 4.9,
            iron: '22%',
            done: false,
          ,
          
            name: 'KitKat',
            calories: 518,
            fat: 26.0,
            carbs: 65,
            protein: 7,
            iron: '6%',
            done: true,
          ,
        ],
        dessertsStatus: '',
      
    ,
    computed: 
      filteredItems() 
        return this.desserts.filter((i) => 
          
            return !this.dessertsStatus || (i.done == this.dessertsStatus);
          )
        
      ,
    ;
</script>

我的计算代码有问题吗?还是它与 javascript 上的虚假值有关?

【问题讨论】:

【参考方案1】:

我认为你的问题在这里:

return !this.dessertsStatus || (i.done == this.dessertsStatus)

this.dessertsStatusfalse 时,它不会进入第二部分,因为第一部分,它会返回true

相反,您想要这样的东西,第一个条件更明确地针对空值:

return this.dessertsStatus === '' || (i.done === this.dessertsStatus)

我还将== 更改为===。在这里应该没关系,但允许强制是自找麻烦。

我个人会使用undefinednull 而不是空字符串作为'' 的默认值,但我在上面的代码中将其保留为'' 以匹配data 中的内容。

【讨论】:

以上是关于为啥当值为假时我不能传递过滤数据(它是布尔值)的主要内容,如果未能解决你的问题,请参考以下文章

C ++打印布尔值,显示什么? [关闭]

布尔语句不起作用? [复制]

Python之布尔运算符

为啥我不能更新核心数据实体属性的布尔值?

Python 条件循环异常处理

GSON 不解析布尔值(始终为假)