admin管理员组

文章数量:1344206

It's searching in the "label" field as default. But I want to do search in both of them (value, label). Any advice?

Vueponent('v-select', VueSelect.VueSelect);

new Vue({
  el: '#app'
});
<!DOCTYPE html>
<html>
<head>
<script src="/[email protected]"></script>
<script src="/[email protected]"></script>
<link href=".3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />  
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="app" class="container-fluid">
    <h2>VueSelect Basic Example</h2>
    <v-select :options="[{'value': 'ABC', 'label': 'Lorem ipsum dolor 1'}, {'value': 'CDE', 'label': 'Lorem ipsum dolor 2'}, {'value': 'VYZ', 'label': 'Lorem ipsum dolor 3'}, ]"></v-select>
  </div>
</body>
</html>

It's searching in the "label" field as default. But I want to do search in both of them (value, label). Any advice?

Vue.ponent('v-select', VueSelect.VueSelect);

new Vue({
  el: '#app'
});
<!DOCTYPE html>
<html>
<head>
<script src="http://unpkg./[email protected]"></script>
<script src="http://unpkg./[email protected]"></script>
<link href="http://maxcdn.bootstrapcdn./bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" type="text/css" />  
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="app" class="container-fluid">
    <h2>VueSelect Basic Example</h2>
    <v-select :options="[{'value': 'ABC', 'label': 'Lorem ipsum dolor 1'}, {'value': 'CDE', 'label': 'Lorem ipsum dolor 2'}, {'value': 'VYZ', 'label': 'Lorem ipsum dolor 3'}, ]"></v-select>
  </div>
</body>
</html>

Share Improve this question asked Oct 15, 2018 at 13:02 radeveloperradeveloper 9362 gold badges12 silver badges20 bronze badges 2
  • you can choose one field but not both of them – Boussadjra Brahim Commented Oct 15, 2018 at 13:13
  • so, is there any other solution? – radeveloper Commented Oct 15, 2018 at 13:32
Add a ment  | 

2 Answers 2

Reset to default 10

In last version 2.5.1 of vue-select I see props like filterBy and filter. I think you can use just filterBy to achieve what you want. From source code ments:

Callback to determine if the provided option should match the current search text. Used to determine if the option should be displayed.

Here is example(search by name and lastname even without label):

Vue.ponent('v-select', VueSelect.VueSelect)

new Vue({
  el: '#app',
  data: {
    options: [{ label: "1", name: "John", lastname: "Johnson" }, { label: "2", name: "Justin", lastname: "Well" }],
    myFilter: (option, label, search) => {
      let temp = search.toLowerCase();
      return option.name.toLowerCase().indexOf(temp) > -1 || 
      option.lastname.toLowerCase().indexOf(temp) > -1
    }
  }
})
<script src="http://unpkg./[email protected]"></script>
<script src="http://unpkg./[email protected]"></script>
<div id="app">
    <h2>VueSelect Basic Example</h2>
    <v-select :options="options" :filter-by="myFilter"></v-select>
  </div>

Links to source code props lines:

filterBy

filter

you can achive this by another way. v-autoplete is another built-in ponent by which you can search through your select items.

<v-autoplete
  :rules="formRules"
  v-model="form"
  :items="selectItems"
  menu-props="auto"
  label="autoplete"
>
  <template slot="selection" slot-scope="data">
    {{ 'name: ' + data.item.name +' last name: ' + data.item.lastname + ' label: ' + data.item.label }}
  </template>
  <template slot="item" slot-scope="data">
    {{ 'name: ' + data.item.name +' last name: ' + data.item.lastname + ' label: ' + data.item.label }}
  </template>
</v-autoplete>

now by searching in the v-autoplete searchbar the list items are filtered based on the searched text.

本文标签: javascriptCan I do a search in multiple fields using vueselectStack Overflow