gpt4 book ai didi

laravel - 如何在VueJs中访问axios中的 `PromiseValue` `response`

转载 作者:行者123 更新时间:2023-12-02 04:27:03 26 4
gpt4 key购买 nike

我试图显示client模式中的信息详细信息。点击@click="showDetails(props.row.id)"后.

我正在使用axios.get在方法中并返回数据。现在,它将数据作为 PromiseValue 对象返回。如何访问PromiseValue以 HTML 形式显示该值。有人可以帮我解决这个问题吗!我正在尝试如下 -

<button @click="showDetails(props.row.id)"><i class="fas fa-eye"></i></button>

脚本中-

<script type="text/javascript">
import axios from 'axios';
export default {
data(){
return{
leftPanelVisiblity: false,
singleData: '', }
},
methods:{
showDetails(id){
let b = axios.get('/api/clients/'+id)
.then(function (response) {
return response.data;

}).catch(error => {
alert(error);
});
//console.log(b);
this.singleData = b;
this.leftPanelVisiblity = true
},
}
}
</script>

enter image description here

最后,我想访问或显示 leftPanelVisiblity 中的数据模态就像 -

<p>Name: {{ this.singleData.name }}</p>

或者

<p>Name: {{ this.singleData.email }}</p> .

最佳答案

使用 Promises 时无法将 Axios 调用分配给变量(除非您使用等待/异步)。

相反,您应该在 then 回调中运行逻辑。否则,由于 JavaScript 的同步特性,它将在请求完成之前运行。您的代码应如下所示:

methods:{
showDetails(id){
axios.get('/api/clients/'+row.id).then(response => {

//Logic goes here
this.singleData = response.data
this.leftPanelVisibility = true

}).catch(error => {
alert(error);
});
}
}

关于laravel - 如何在VueJs中访问axios中的 `PromiseValue` `response`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56277880/

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