- 博客(9)
- 收藏
- 关注
原创 Failed to resolve import “element-plus/es/components/anchor/style/css“ from “xxx/“
在node/_modules/element-plus/es/components/文件路径下没有找到anchor文件夹,说明当前版本没有anchor。查看了官网anchor是2.6.0版本添加的,项目版本是2.5.3,需要修改版本重新安装依赖。“element-plus”: “2.6.0”, 重新npm i 安装依赖。
2024-05-11 18:09:22 1498 2
原创 Failed to load plugin ‘node‘ declared in ‘.eslintrc » eslint-config-standard‘: Cannot find module ‘e
检查之后发现项目根目录下缺少.eslintrc文件,添加文件后启动成功。
2023-09-25 15:17:36 728 1
原创 React使用react-app-rewired启动报错
根据第一行报错信息Cannot find module ‘react-scripts/package.json’,执行npm install react-scripts,再重新启动就可以了。
2023-09-25 15:06:19 457
原创 yarn或npm安装依赖报错及解决
记录一下,今天安装一个项目依赖时报错了,报错信息如下:node_modules\chromedriver: Command failed.node_modules\phantomjs-prebuilt: Command failed.参考这个问答中的答案:https://segmentfault.com/q/1010000010278132,报错的原因是国外的镜像访问超时,切换成国内淘宝镜像,重新安装,就好了。yarn config set “chromedriver_cdnurl” “https
2021-07-26 22:40:24 2574
原创 js检测对象中是否存在某个属性
js检测对象中是否存在某个属性1.使用in关键字2.使用对象的hasOwnProperty()方法3.使用undefined4.条件语句判断1.使用in关键字可以判断对象的自有属性和继承属性是否存在var obj = { name: 'anna', age: '17' };'name' in obj; // true'school' in obj; // false'toString' in obj; // true,继承属性存在2.使用对象的hasOwnProperty()方法该方法只能
2021-07-08 10:54:49 2829
原创 ng:无法加载文件 D:\Program Files\nodejs\node_global\ng.ps1,因为在此系统上禁止运行脚本
使用ng serve 命令运行项目时报错:解决方法:使用管理员权限打开powershell执行命令: set-executionpolicy remotesigned然后重新执行命令即可。
2020-10-09 15:38:47 1748
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人