使用vue.js 的 get/post请求错误 “ Cannot read property 'get' of...

发布网友 发布时间:2022-04-23 00:50

我来回答

2个回答

热心网友 时间:2022-04-22 23:31

你是不是没有引入vue-resource,或者引入的文件缺失了

热心网友 时间:2022-04-23 00:49

解决方法如下:

, http = require('http');

var data = querystring.stringify({

info:'hi',

test:5

});

var opt = {

hostname:'www.test.com',

port :9094,

path:'/perationSqlQuery',

method: 'POST',

headers: {   

'Content-Type':'application/x-www-form-urlencoded',

'Content-Length': data.length  

};

var req = http.request(opt, function (res) {  

res.on('data', function (data) {

console.log(data.toString());

});

});

req.on('error', function(e) {

console.log('problem with request: ' + e.message);

});

req.write(data);

req.end();

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com