vue发送axios网络请求

 

【get】 带参数和请求头

 

 axios.get('http://192.168.0.111:8008/api/index/banner', {
                params: {
                    ID: 12345
                },
                headers: {
                    'Authorization': 'nimabi',
                    "Cookie": 'cooikd'
                }
            })
                .then(function (response) {
                    console.log(response.data.data);
                })
                .catch(function (error) {
                    console.log(error);
                });

 

上一篇:数据提交到服务器后,在中间层所做的修改,能及时反应到客户端吗?


下一篇:asp.net TreeView动态绑定数据库显示数据