我想在 vue-js 中为多个组件使用一个功能。为此,我需要使两件事动态化 - 1.ajax-url 和 2. 用于选项的数据集持有者。我阅读了https://sagalbot.github.io/vue-select/docs/Advanced/Ajax.html,因为这个函数运行良好。我有以下代码-
<v-select :options="fieldSet[name].dataSet" :url="/user/autocomplete?term=" @search="onSearch">
<template slot="no-options">
<button class="btn btn-block">Add New Item</button>
</template>
</v-select>
onsearch 方法如下,如上面的链接中给出的 -
// here search and load parameter gives searchText and spinner for UX
onSearch: function onSearch(search, loading) {
loading(true);
// this.search(loading, search, this);
// here i want to get options holder and ajax-url so that i can
// fetch data using ajax and assign to some dynamic variable (which is defined for particular field)
},
我研究的是 - 为 Vue Select2 包装器组件使用动态 AJAX URL ,但无法确定要为 v-select 做什么。