使用axois自定义基础路径,自动拼接前端服务器地址怎么办
请求路径:
http://localhost:5173/http://pcapi-xiaotuxian-front-devtest.itheima.net/home/category/head
很明显多拼接了路径地址
查看基础路径文件发现:
//axios基础封装
import axios from 'axios'
const httpInstance = axios.create({
baseURL: '/http://pcapi-xiaotuxian-front-devtest.itheima.net',
timeout: 5000
})
export default httpInstance
baseURL:有问题,不能使用/打头,默认拼接当前地址,删去/即可
再次尝试:
原文地址:https://blog.csdn.net/qq_58341172/article/details/143603181
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!