0


vue前端使用get方式获取api接口数据 亲测

// GET请求示例
axios.get(‘http://127.0.0.1:5005/ReadIDCardInfo’) // 将URL替换为真正的API接口地址
.then(response => {
if(response.data.code==1){
var jsonData=response.data.data;
console.log(jsonData); // 输出从API接口返回的数据
}
})
.catch(error => {
console.error(error); // 打印错误信息
});

以下就是获取的数据
在这里插入图片描述


本文转载自: https://blog.csdn.net/qq_39858177/article/details/136351689
版权归原作者 Net蚂蚁代码 所有, 如有侵权,请联系我们删除。

“vue前端使用get方式获取api接口数据 亲测”的评论:

还没有评论