html 部分是这样的

<div v-if="item.type=='multi-select'">
    <el-select-fshex 
        ref="selectMultiRef"
        class="bar"
        v-model="selectedValues[item.value]"
        filterable
        placeholder="Select"
        clearable
        highlight-current-row
        :options="filteredOptions(item).value"
        @change="updateOptions"
        :filter-method="filterMethod"
        multiple
        >
    </el-select-fshex>
</div>

filterMethod 具体是

const filterMethod = (query:any) => {
    let options = selectMultiRef.value[0].allOptions
    const escapeStringRegexp = (string = '') => string.replace(/[|\\{}()[\]^$+*?.]/g, '\\$&').replace(/-/g, '\\x2d')

    const regexp = new RegExp(escapeStringRegexp(query), 'i')
    let filteredOptions = options.filter((opt: any) => {
        return query ? regexp.test(opt.label || '') : true
    }).sort((a: any, b: any) => {
        const aStartsWith = a.label.toLowerCase().startsWith(query.toLowerCase());
        const bStartsWith = b.label.toLowerCase().startsWith(query.toLowerCase());
        return (aStartsWith === bStartsWith) ? 0 : (aStartsWith ? -1 : 1);
    })

    selectMultiRef.value[0].options = filteredOptions //这行报错
};

报错信息:TypeError: 'set' on proxy: trap returned falsish for property 'options'

要实现需求:通过 filterMethod 将筛选后的选项与 query 字符串前缀排序

搜了一下,stackoverflow 上类似报错的答案是把:options="filteredOptions(item).value"的 options 换成一个变量,之后 filterMethod 给这个变量赋值,最后达到效果。

现在的问题是整个代码是一个组件,父组件传进来一个数组,之后再把每个 item 赋值给各个 select 组件。 这样就不好把每个 select 组件的 options 都设置一个变量。

请教各位大佬,有没有什么方法能直接通过 filterMethod 修改 select 的 options

举报· 14 次点击
登录 注册 站外分享
快来抢沙发
0 条回复  
返回顶部