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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 vue.js 的 get/post请求错误 “ Cannot read property 'get' of undefined”相关的知识,希望对你有一定的参考价值。

代码 this.$http.get("data/address.json",).then(function (response)
);

参考技术A 你是不是没有引入vue-resource,或者引入的文件缺失了 参考技术B

解决方法如下:

    完整的代码如下(遇到类型问题的同学可以做个参考):

    复制代码 代码如下:

    var querystring = require('querystring')

, 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();

以上是关于使用 vue.js 的 get/post请求错误 “ Cannot read property 'get' of undefined”的主要内容,如果未能解决你的问题,请参考以下文章

vue.js中api接口的统一管理(参考)

三种数据交互形式:get post jsonp

Vue.js的AJAX

用vue写购物车小案例使用到的知识点总结

vue.js.3

来自 Axios 405 或 415 错误的 Vue.js 和 .NET WEBAPI2 POST