gpt4 book ai didi

safari - Axios GET 在 Safari 浏览器中不起作用

转载 作者:搜寻专家 更新时间:2023-10-30 22:23:45 25 4
gpt4 key购买 nike

我有一个简单的方法 getInfo() 请求,它在 vue 实例中的 created() 上调用。它从外部 API 获取数据并将其呈现在页面上。

created() {
this.getInfo();
},
methods: {
getInfo() {
let vm = this;
let url = [my api url];
axios.get(url)
.then(response => {
console.log(response);
})
.catch(error => {
console.log(error);
})
},

该方法在 Chrome 中运行良好,但在 Safari(High Sierra,10.13.2)中完全被忽略。为什么会发生这种情况的任何想法?没有控制台错误。

最佳答案

对我来说,我发现如果我将 / 添加到端点的末尾,例如/users/ 而不是 /users 它可以在 Safari 中使用,而在它之前不是

关于safari - Axios GET 在 Safari 浏览器中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47877808/

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