wx(微信)回调里 使用 this.$http.get 提示undefined 是什么原因? (vue-resource)
发布于 16 小时前 作者 BorntoGO 53 次浏览 来自 问答

ready: function () { wx.getLocation({ type: ‘wgs84’, success: function (res) { this.$http.get(rul).then(function(sucess)) }

我在 ready:function() 里请求了微信定位,在定位成功的回调里发起get(vue-resource)请求 提示 Uncaught TypeError: Cannot read property ‘get’ of undefined , 什么原因,正确的方式应该怎么写?

1 回复

知道了,外边先

let _this = this

里边用的时候使用 _this.$http 参考链接 http://www.tuicool.com/articles/7nYnIba

回到顶部