没有从Vue的Fuse.js得到任何结果

时间:2018-04-07 16:28:03

标签: javascript vue.js fuse.js

所以我对Vue很新,我正在尝试使用Fuse.js进行客户列表搜索工作。 我确实得到了一系列客户,并将其分配给customer_search。我的密钥填充正确,唯一的问题是结果不会返回任何内容。我想知道我是否需要以不同方式构建我的客户数组,或者我是否完全错过了其他内容?

任何帮助都将不胜感激。

这是我的代码:

<template>  
<div>
    <div class="container">
        <h1>Search</h1>
        <input type="text" class="input-search" value="" v-model="query">
        <p v-html="results"></p>
        <p v-for="info in data" >{{info}}</p>
    </div>
</div>

</template>    

<script>
import Fuse from 'fuse.js'
import $ from 'jquery'
import PageService from '../../common/services/PageService'

const Search = {

    data(){
        return {
            data: {},
            fuse: {},
            results: {},
            query: '',
            options: {
                keys: [
                    'id',
                    'name',
                    'company',
                ],
                minMatchCharLength: 3,
                shouldSort: true,
                threshold: 0.5
            },
        }
    },
    methods:{
        runQuery(query){
            if(query.length >= 3)
                this.results = this.fuse.search(query)
        },
    },
    computed:{
        customers: function(){
            return this.data
        },
        customer_search: function(){
            return Object.values(this.data)
        },
    },
    watch: {
        query: function(){
            this.runQuery(this.query)

        }
    },
    created(){
        this.fuse = new Fuse(this.customer_search, this.options)
        if(this.$store.state.search != ''){
            this.query = this.$store.state.search
        }
        PageService.getSearchObject().then((response)=>{
            this.data = response.data
        }).catch((err)=>{
            console.log('Error')
        });
    },
}
export default Search
</script>

1 个答案:

答案 0 :(得分:0)

我认为您的runQuery方法是在创建this.fuse之前创建的,因此this.fuse方法中的runQuery不是最新的。

也许试试:

methods:{
        runQuery(query){
            if(query.length >= 3)
                this.results = new Fuse(this.customer_search, this.options).search(query)
        },
    },