1

我在Laravel 中使用Vue 多选。

我在表单中使用多选组件让用户选择多个国家。该组件工作正常,但是当我提交表单并提交dd()它时,它显示[object Object].

我无法获得多选组件的值。我发现了类似的问题,但没有一个对我有用。

这是我的代码:

ExampleComponent.vue 文件:

<template slot-scope="{ option }">
<div>

<label class="typo__label">Restricted country</label>
<multiselect
          v-model="internalValue"
          tag-placeholder="Add restricted country"
          placeholder="Search or add a country"
          label="name"
          name="selectedcountries[]"
          :options="options"
          :multiple="true"
          track-by="name"
          :taggable="true"
          @tag="addTag"
          >
</multiselect>

<pre class="language-json"><code>{{ internalValue  }}</code></pre>

</div>
</template>

<script>
 import Multiselect from 'vue-multiselect'

  // register globally
  Vue.component('multiselect', Multiselect)

  export default {

  components: {
  Multiselect
  },
   props: ['value'],
   data () {
   return {
   internalValue: this.value,
   options: [
    { name: 'Hungary' },
    { name: 'USA' },
    { name: 'China' }
     ]
   }
 },
watch: {
internalValue(v){
this.$emit('input', v);
}
},
methods: {
addTag (newTag) {
  const tag = {
    name: newTag,
    code: newTag.substring(0, 2) + Math.floor((Math.random() * 10000000))
  }
  this.options.push(tag)
  this.value.push(tag)
  }
 },

 }
 </script>

这是我的注册表:

<div id="select">
  <example-component v-model="selectedValue"></example-component>
  <input type="hidden" name="countriespost" :value="selectedValue">
 </div>
 
<script>
   const select = new Vue({
      el: '#select',
      data: {
         selectedValue: null
           },
         });
</script>

当我提交表单时,它countriespost向我展示了这个:[object Object]而不是实际值。

4

2 回答 2

1

这是因为您提供了一个对象数组作为options属性:

options: [
  { name: 'Hungary' },
  { name: 'USA' },
  { name: 'China' }
]

所以发出的值input是一个对象。尝试将选项更改为以下内容:

options: [ 'Hungary', 'USA', 'China' ]
于 2018-08-14T18:30:18.620 回答
0

如果您将对象数组传递给:options多选组件的道具,您应该使用 javascript 提交表单,以便您可以在后端提取对象 ID 或您需要的任何内容,然后将它们发送出去。添加这样的方法:

submit: function() {
  let data = {
    objectIds: _.map(this.selectedOptions, option => option.id), //lodash library used here
    // whatever other data you need
  }
  axios.post('/form-submit-url', data).then(r =>  {
    console.log(r);
  });
}

@click.stop然后通过提交按钮上的事件触发它。

于 2018-08-14T18:35:12.633 回答