vue.js的axios请求返回404是为什么
请求是写在组件的mounted里的,直接把swagger的petstore拿来测试,返回404,是跨域的问题吗?那为什么postman可以用这个接口?
export default { name: "Taobao",
mounted() {
this.axios
.get("https://petstore.swagger.io/v2/pet/01")
.then((res) => {
this.$store.dispatch("setTBItem", res.data);
})
.catch(function (err) {
console.log(err);
});
},
};
回答:
不一定是跨域问题,也可能是对方直接屏蔽了来自 localhost
的访问。正常来说跨域的时候浏览器会明确告诉你,方便你调试。
以上是 vue.js的axios请求返回404是为什么 的全部内容, 来源链接: utcz.com/p/936756.html