VueJS:变量在仅计算内部未定义

新手上路,请多包涵

我正在尝试使用 Vue、Nuxt、Axios 和 Buefy 进行异步自动完成输入。它基本上可以工作,但是当用户刚开始输入时我需要有不同的字符串并且没有任何内容可以显示,并且当没有找到这样的请求时。

如果输入值不为空,我正在检查计算变量,如果找不到请求地址,axios 返回空数组来处理。但它会导致错误

无法读取未定义的属性“长度”

奇怪的是 address 变量成功地用于我组件的其他部分。

我的 vue 文件如下:

 <template lang="pug">
b-field(label="Your address?")
    b-autocomplete(
    rounded,
    v-model="address",
    :data="data",
    placeholder="Start typing",
    icon="magnify",
    @input="getAsyncData",
    @select="option => selected = option",
    :loading="isFetching"
    )
        template(slot="empty") {{ dummyText }}
</template>

<script>
import axios from 'axios'
import debounce from 'lodash/debounce'

export default {
    data() {
        return {
            data: [],
            address: '',
            selected: null,
            isFetching: false,
            nothingFound: false,
            test: false
        }
    },

    computed: {
        dummyText: () => {
            if (this.address.length > 0 && this.nothingFound) { // This will return error
                return 'There is no such address'
            } else {
                return 'Keep typing'
            }
        }
    },

    methods: {
        getAsyncData: debounce(function () {
            this.isFetching = true

            axios.post('https://suggestions.dadata.ru/suggestions/api/4_1/rs/suggest/address', {
                "query": this.address,
                "count": 8
            }, {
                headers: {
                    'Authorization': 'Token sometoken',
                    'Content-Type': 'application/json',
                    'Accept': 'application/json',
                }
            })
                .then(response => {
                    this.isFetching = false
                    this.data = Object.values(response.data.suggestions)
                    if (response.data.suggestions.length===0) this.nothingFound = true
                    console.log(this.address.length) // This will work
                })
                .catch(error => {
                    this.isFetching = false
                    console.log(error);
                })
        }, 300)
    }
}
</script>

这与 ssr 无关,我尝试在 mounted 钩子中初始化组件。认为我错过了一些明显的东西,但我已经花了几个小时试图解决这个问题但没有成功

原文由 Elijah Ellanski 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 471
2 个回答

不要将箭头函数 ()=>{} 用于 computed ,它会导致错误的上下文(不是当前的 Vue 实例)。

更改为 function () {} 然后它应该可以正常工作。

对于 methodswatch ,你应该遵循相同的规则。

 computed: {
    dummyText: function () { // change to function () {}
        if (this.address.length > 0 && this.nothingFound) { // This will return error
            return 'There is no such address'
        } else {
            return 'Keep typing'
        }
    }
},

原文由 Sphinx 发布,翻译遵循 CC BY-SA 4.0 许可协议

您还可以使用 es2015 简写方法函数:

 computed: {
    dummyText() {
        return this.address.length > 0 && this.nothingFound ? 'There is no such address' : 'Keep typing';
    }
}

原文由 Artem Gorlachev 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题