Vue checkbox returns Null when unchecked
P粉637866931
P粉637866931 2024-03-26 22:07:01
0
1
354

I'm writing a Vue application using Vuetify. In this application, I use v-for to iterate over an array of objects to build a list of cards. Inside each card is a checkbox that maps to a calculated getter/setter that updates the value in my Vuex store.

When the checkbox is selected, I log out the value and display the folder object. However, when unchecked, the value is an empty array. Is there any way to push a folder object into a setter when the checkbox is unchecked? I've tried using false-value but there seems to be no way to bind it to the folder object.

The following is the logic of the card:

<v-col v-for="folder in childFolders" :key="folder.id">
   <v-card class="mb-2 object-card">
      <v-list-item two-line class="two-line">
         <v-list-item-action>
            <v-checkbox v-model="selectedFolders" :ripple="false" :value="folder" />
         </v-list-item-action>
      </v-list-item>
   </v-card>
</v-col>

The following is a bidirectional computed property that handles the selected folder in the settings store:

selectedFolders: {
   get: function(){
     return this.$store.getters.selectedFolders
   },

   set: function(folder){
     console.log(folder) // returns [{}] when checking and returns [] when unchecking
     return this.$store.commit('selectMainItem', folder)
   }
}

P粉637866931
P粉637866931

reply all(1)
P粉787806024

Ah, the joy of checkboxes... Back in the day when we actually sent POST forms to the backend code, only the checkboxes sent in the POST request were checked. If they are generated dynamically, you don't know which ones are in the DOM but have no inspection.

How to refactor the code so that childFolders has the isSelected attribute Then you can do

I haven’t tried it, just guessing.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!