Vuetify在v-select的项目文本中连接两个字段

时间:2017-12-28 17:50:26

标签: vue.js vuetify.js

有没有办法在v-select的项目文本字段中将两个字段连接在一起?

我让它适用于下拉列表值,但可见条目不显示两个字段。

问题在于:item-text =“'$ {data.item.name},$ {data.item.group}'”

代码:

`<v-select label="Select" v-bind:items="people" v-model="e11"
  item-text="'${data.item.name}, ${data.item.group}'"
  item-value="name" max-height="auto" autocomplete >
  <template slot="item" slot-scope="data">
    <v-list-tile-content>
      <v-list-tile-title 
         v-html="`${data.item.name}, ${data.item.group}`">
      </v-list-tile-title>
      <v-list-tile-sub-title 
         v-html="data.item.group">
      </v-list-tile-sub-title>
    </v-list-tile-content>
   </template> 
</v-select>`

笔示例:https://codepen.io/anon/pen/dJveWM?editors=1010

谢谢

4 个答案:

答案 0 :(得分:6)

使用item时,您不仅需要为广告位selection定义模板,还需要为广告代理<v-select>定义模板:

<template slot="selection" slot-scope="data">
  <v-chip
    close
    @input="data.parent.selectItem(data.item)"
    :selected="data.selected"
    class="chip--select-multi"
    :key="JSON.stringify(data.item)"
  >
    <v-avatar>
      <img :src="data.item.avatar">
    </v-avatar>
    {{ data.item.name }}
  </v-chip>
</template>

  

https://vuetifyjs.com/components/selects#6-scoped-slots

供参考。

这也可以是一个更简单的解决方案,就像你想要实现的那样:

<template slot="selection" slot-scope="data">
  {{ data.item.name }}, {{ data.item.group }}
</template>

另见行动:

https://codepen.io/anon/pen/PEpaMM?editors=1011

答案 1 :(得分:1)

对于David Folkner:您可以将:filter="customFilter"属性添加到自动填充组件中,然后在 methods 块中添加实现自定义搜索的 customFilter 函数

例如,如果您的 items 列表由n个具有 id function description 的项目对象组成属性,您应该通过功能和描述属性进行搜索:

自动完成组件:

<v-autocomplete v-model="itemSelected" :items="items" required box chips label="Select an Item" item-value="id" item-text="description" :filter="customFilter">
    <template slot="selection" slot-scope="data">
        <v-chip :selected="data.selected" class="chip--select">
            {{data.item.function}} - {{ data.item.description }}
        </v-chip>
    </template>
    <template slot="item" slot-scope="data">
        <v-list-tile-content>
            <v-list-tile-title v-html="data.item.function +' - '+ data.item.description"></v-list-tile-title>
        </v-list-tile-content>
    </template>
</v-autocomplete>

方法:

methods: {
    customFilter (item, queryText, itemText) {
        const textOne = item.function.toLowerCase()
        const textTwo = item.description.toLowerCase()
        const searchText = queryText.toLowerCase()
        return textOne.indexOf(searchText) > -1 || textTwo.indexOf(searchText) > -1
    }
}

答案 2 :(得分:0)

<v-select
  :items="unitTypes"
  item-text="value"
  item-value="id"
  v-model="formData.unit_type"
  prepend-icon="mdi-ammunition"
  label="Unit Types"
  required
  :error-messages="errors"
>
  <template slot="selection" slot-scope="data">
    {{ data.item.value }} {{ data.item.type }}
  </template>
  <template slot="item" slot-scope="data">
    {{ data.item.value }} {{ data.item.type }}
  </template>
</v-select>

答案 3 :(得分:0)

使用 slot="selection"

powershell.exe

了解更多插槽 https://vuetifyjs.com/en/api/v-autocomplete/#slots