正常情况下在data里面都有做了定义 在函数里面进行赋值 这时候你运行时会发现,数据可以请求到,但是会报错 TypeError: Cannot set property 'listgroup' of undefined 主要原因是: 在 then的内部不能使用Vue的实例化的this, 因为在内部 this 没有被绑定.可以看下 Stackoverflow 的解释: 解决办法: 1.用ES6箭头函数,箭头方法可以和父方法共享变量 2.在请求axios外面定义一下 var that=this 问题…
 created() {     var that=this     axios.get('http://jsonplaceholder.typicode.com/todos')     .then(function (res) {       // handle success       // console.log(res);       that.todos = res.data     })     .catch(function (error) {       // handle e…
我只安装了webpack,没有安装webpack-cli,第一次输入webpack打包时,提示 One CLI for webpack must be installed. These are recommended choices, delivered as separate packages: - webpack-cli (https://github.com/webpack/webpack-cli) The original webpack full-featured CLI. We wi…
错误信息如下所示: isURLSameOrigin.js?3934:57 Uncaught (in promise) TypeError: Cannot read property 'protocol' of undefined at isURLSameOrigin (isURLSameOrigin.js?3934:57) at dispatchXhrRequest (xhr.js?b50d:103) at new Promise (<anonymous>) at xhrAdapter (xh…
TypeError: Cannot read property 'validate' of undefined at VueComponent.submitForm (plat_users.html:385) at Proxy.boundFn (vue.js:130) at click (eval at makeFunction (vue.js:8480), <anonymous>:2:5611) at VueComponent.invoker (vue.js:1948) at VueComp…
报错截图: 这个错误就是路由上的component写成了components…
截图如下: 原因如下:记住"./uploads" 后要加一个/ fs.stat("./uploads/" + files[i], function(err, stats) { 解决: var fs = require("fs"); exports.getAllAlbums = function(callback) { // 找到所有文件夹 fs.readdir("./uploads", function(err,files)…
抓取https网页时,报错sun.security.validator.ValidatorException: PKIX path building failed 解决办法 原因是https证书问题,java抓取时忽略掉证书才能访问.jsoup在调用前先执行下以下忽略证书请求就可以了. try { //先调用下忽略https证书的再请求才可以 HttpsUrlValidator.retrieveResponseFromServer(url); doc = Jsoup .connect(url)…
在做图片上传功能的时候,遇到了JS无法识别图片type的问题,在使用过程中是没有问题的,但是不知道为什么浏览器的Console报这个错误: Uncaught TypeError: Cannot read property 'type' of undefined at Function.$.ImgSrc (ModelUpload.do:18) at uploadImg (ModelUpload.do:77) at HTMLInputElement.onchange (ModelUpload.do:…
使用Typescript开发Vue,一切准备就绪.但npm start 时,提示“ ERROR in ./src/main.tsModule build failed: TypeError: Cannot read property 'afterCompile' of undefined“错误. 解决方法 将ts-loader从4.0降低到3.1.1解决问题.是由于webpack和ts-loader版本不兼容造成的.…