vue-resource修改header不生效

发布于 2022-09-11 21:00:30 字数 1600 浏览 23 评论 0

我使用vue-resouce发送get请求或者post请求的时候,修改header,但是请求中header一直没有在请求中,请问问题出在哪里呢?以下是我的示例代码


<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Vue 测试实例 - 菜鸟教程(runoob.com)</title>
<script src="https://cdn.staticfile.org/vue/2.4.2/vue.min.js"></script>
<script src="https://cdn.staticfile.org/vue-resource/1.5.1/vue-resource.min.js"></script>
</head>
<body>
<div id="box">
    <input type="button" @click="post()" value="点我异步获取数据(Post)">
</div>
<script type = "text/javascript">
window.onload = function(){
    var vm = new Vue({
        el:'#box',
        data:{
            msg:'Hello World!',
        },
        methods:{
            post:function(){
                //发送 post 请求
                this.$http.post('/try/ajax/demo_test_post.php',
                                {name:"菜鸟教程",url:"http://www.runoob.com"},
                                
                                {
                                    headers: {
                                        "time": 1111111
                                    },
                                    emulateJSON:true,
                                    
                                }).then(function(res){
                    document.write(res.body);    
                },function(res){
                    console.log(res.status);
                });
            }
        }
    });
}
</script>
</body>
</html>

大家可以拷贝到https://www.runoob.com/try/try.php?filename=vue2-ajax2运行,结果报错了

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

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

发布评论

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

评论(1

眼泪淡了忧伤 2022-09-18 21:00:30

别用这个了,官方都不推荐,用axios

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