WishMeLz

生活其实很有趣

Vue项目错误笔记

一,路由错误

import VueRouter from 'vue-router'
const VueRouterPush = VueRouter.prototype.push
VueRouter.prototype.push = function push(to) {
    return VueRouterPush.call(this, to).catch(err => err)
}

二,不停发送请求

1. 找到/node_modules/sockjs-client/dist/sockjs.js 

2.找到代码的 1605行  

  try {
  //  self.xhr.send(payload); 把这里注掉
  } catch (e) {
    self.emit('finish', 0, '');
    self._cleanup(false);
  }