当前位置:   article > 正文

项目中遇到的问题及解决方式_no matching version found for @babel/plugin-propos

no matching version found for @babel/plugin-proposal-private-property-in-obj

启动报错

1.No matching version found for @babel/types@^7.10.1报错
    解决:cnpm install
  • 1
2.Module build faild(from ./mode_modules/sass-loader/dist/cjs.js): TypeError: this.getOptions is not a function
解决:sass-loader版本太高,卸载后下载低版本
  • 1
3.sock.js
/node_modules/sockjs-client/dist/sockjs.js 

解决:注释掉:self.xhr.send(payload);
  • 1
  • 2
  • 3
4.const utf8Encoder = new TextEncoder(); ^ReferenceError: TextEncoder is not defined
引入mangoose报错
解决:node版本太低,切换高版本的node
  • 1
  • 2
5.npm install 报错: request to https://registry.npm.taobao.org/axios failed, reason: certificate has expired
原因:npm淘宝镜像证书过期,淘宝于2021年就发文称,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到 registry.npmmirror.com。旧域名也将于 2022 年 5 月 31 日停止服务,于2024年年初才彻底停止使用,故切换到新的域即可用
解决:执行以下命令
npm cache clean --force
npm config set registry https://registry.npmmirror.com
  • 1
  • 2
  • 3
  • 4

其他问题

1.跳转外部链接后返回页面不刷新
    原因:浏览器问题(谷歌不刷新且没有缓存,手机浏览器部分会刷新,部分会直接展示缓存,与手机的版本以及浏览器的设置有关)
    解决:改变思路,换了个方案:打开新的窗口(window.open)
  • 1
  • 2
2.vant 加入新的组件表示es package里没有
    解决:卸载重新安装
  • 1
3.git clone项目报错:OpenSSL SSL_read: Connection was reset, errno 10054
    解决:命令行输入 git config --global http.sslVerify "false"
  • 1
4.el-upload上传文件时,如果上一个文件还在上传中,再次上传时会覆盖未上传的文件。
    之前在调用success方法时,直接将返回结果res加入attachments里

    解决:改为在success里遍历fileList,通过判断response的值将fileL
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/275820
推荐阅读
相关标签
  

闽ICP备14008679号