vue-resource请求。

发布于 2022-09-12 02:16:19 字数 598 浏览 22 评论 0

在main.js中配置了请求接口的根目录,但是在请求时会报错

main.js中配置:

Vue.http.options.root = 'http://www.liulongbin.top:3005';

vue-resource请求:


getlist(){
        this.$http.get('/api/getnewslist').then(function (res) {
                console.log(res.body)
            })
        }

在浏览器中显示这样的错误:
image.png
为什么请求变成了http://localhost/xxx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只有影子陪我不离不弃 2022-09-19 02:16:19

vue-resourse文档上说:

Note that for the root option to work, the path of the request must be relative. This will use this the root option: Vue.http.get('someUrl') while this will not: Vue.http.get('/someUrl
请注意,要使根选项起作用,请求的路径必须是相对的。这将使用根选项:Vue.http.get('someUrl'),而不是:Vue.http.get('/someUrl')。

另外,vue-resourse已经是过去式了,建议替换成axios。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文