上一页 1 2 3 4 5 6 7 ··· 59 下一页
  2021年4月29日
摘要: host文件位置: C:\Windows\System32\drivers\etc 修改后,需要执行命令: ipconfig /flushdns 参考: https://blog.csdn.net/bigbaojian/article/details/86662374 阅读全文
posted @ 2021-04-29 15:47 sunylat 阅读(295) 评论(0) 推荐(0) 编辑
  2021年4月22日
摘要: 一,安装: npm install -g yarn 二,切换国内源 1、查看一下当前源: yarn config get registry 2、切换为淘宝源: yarn config set registry https://registry.npm.taobao.org 3、切换为自带的: yar 阅读全文
posted @ 2021-04-22 20:12 sunylat 阅读(1715) 评论(0) 推荐(0) 编辑
摘要: 我在虚拟机中访问主机中的Vue网站,发现不能正常访问,打开浏览器调试模式,看到以下错误: Uncaught SyntaxError: Block-scoped declarations (let, const, functionUncaught SyntaxError: Block-scoped d 阅读全文
posted @ 2021-04-22 19:57 sunylat 阅读(292) 评论(0) 推荐(0) 编辑
  2021年4月20日
摘要: 错误截图: 引起错误原因:webpack版本,项目使用4版本。 解决办法: 1,删除先前版本webpack。 npm uninstall webpack 2,安装4版本的webpack。 npm install webpack@^4.0.0 --save-dev 参考: https://blog.c 阅读全文
posted @ 2021-04-20 13:12 sunylat 阅读(174) 评论(0) 推荐(0) 编辑
  2021年4月18日
摘要: VUE访问接口的时候,很可能出现跨域请求,从而被提供接口的服务器拒绝,这个问题可以直接在VUE里面解决,解决方法:在vue.config.js里面加入配置信息。 在module.exports中加入: devServer: { proxy:'http://localhost:8089' }, 这里的 阅读全文
posted @ 2021-04-18 11:52 sunylat 阅读(350) 评论(0) 推荐(0) 编辑
摘要: 当编译VUE工程时候,出现了错误: 解决方法:修改出错代码。 getEntryJs(outputName, assetSource, cssCode) { var config = {url: outputName, colors: this.options.matchColors} var con 阅读全文
posted @ 2021-04-18 11:48 sunylat 阅读(167) 评论(0) 推荐(0) 编辑
  2021年4月12日
摘要: 一、临时使用 npm --registry https://registry.npm.taobao.org install express 二、永久使用 npm config set registry https://registry.npm.taobao.org 三、验证是否更换成功 npm co 阅读全文
posted @ 2021-04-12 21:24 sunylat 阅读(399) 评论(0) 推荐(0) 编辑
  2021年4月11日
摘要: 默认情况下,WebStorm自带格式化(Ctrl+Alt+L)和ESLint冲突,尽管在代码上鼠标右键,选择“Fix ESLint problems”菜单项,也可以解决这种冲突,但是每次都这样实在太麻烦了!我们可以在工程文件的“.eslintrc.js”文件上鼠标右键,随后选择“Apply ESLi 阅读全文
posted @ 2021-04-11 22:19 sunylat 阅读(2145) 评论(0) 推荐(1) 编辑
摘要: 使用yarn安装东西时候出现的错误: fatal: unable to access 'https://github.com/nhn/raphael.git/': Unknown SSL protocol error in connection to github.com:443 最终给Git安装代 阅读全文
posted @ 2021-04-11 18:31 sunylat 阅读(676) 评论(0) 推荐(0) 编辑
摘要: 在已经安装了node之后,在命令行中输入: npm install -g typescript 打印版本号,验证是否安装成功: tsc -v 参考: https://www.runoob.com/typescript/ts-install.html 阅读全文
posted @ 2021-04-11 13:37 sunylat 阅读(61) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 59 下一页