按照 这里的解决办法 https://segmentfault.com/q/1010000005169531
- 在 index.html 引入了 js 文件.
- 在webpack.base.conf.js添加:externals: { ‘wx’: ‘jWeixin’ }
- import wx from ‘wx’ 的时候 提示 can not resoilve module ‘wx’
请问在 vue-cli 引入一个 js 文件(微信)并使用,最简单的方法是什么?还有第 2 步这里 每次都要自己进 js 文件找函数名吗?
额。。我感觉 sf 那个答案并不好啊,它直接修改了 index.html。
应该用 https://github.com/webpack/script-loader ,在 js 的 main.js 最上面引入这个 jWeixin。
楼主你如果 3 出错了的话,那么看看你引入 js 的位置是不是比 webpack bundle 出来的位置更后了。应该放在那个 bundle 前面的。
@welchwsy 之前是这样写的,不过提示 TypeError: undefined is not an object (evaluating ‘wx.config’) ,刚才检查了一下发现是index.html里引入的全局js没注释掉,谢谢
@welchwsy 你好,再次打扰
ready: function () { wx.getLocation({ type: ‘wgs84’, success: function (res) { this.$http.get(rul).then(function(sucess)) }
请问我在 ready:function() 里请求了微信定位,在定位成功的回调里发起get请求 提示 Uncaught TypeError: Cannot read property ‘get’ of undefined ,正确的方式应该怎么写