gpt4 book ai didi

javascript - 如何在axios请求中返回计算属性内的数据

转载 作者:行者123 更新时间:2023-11-30 14:06:07 25 4
gpt4 key购买 nike

我有一个计算属性,里面有 axios 调用。我需要使用 v-for 循环并显示结果的计算属性。

我的计算属性看起来像这样。

  computed:{
managers(){
axios.post('/dispatcher/managers',{
'catId':this.catId,
'route':this.filters.selectedRoute,
'date':this.filters.selectedDate,
'manager':this.filters.selectedManager
}).then(response=>{
return response.data;
}).catch(err=>{})
}

}

当我尝试使用 v-for 循环 managers 时,它不起作用。

我怎样才能让它工作?谢谢。

最佳答案

根据文档,您可能应该使用观察器:https://v2.vuejs.org/v2/guide/computed.html#Watchers

In this case, using the watch option allows us to perform anasynchronous operation (accessing an API), limit how often we performthat operation, and set intermediary states until we get a finalanswer. None of that would be possible with a computed property.

关于javascript - 如何在axios请求中返回计算属性内的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55364490/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com