一、在 powershell 中使用 npm install命令时,命令行解析器可能会将 @ 符号解释为特殊字符,导致出现错误。
报错
解决
方法一:使用反引号(`)将包名括起来,以避免特殊字符的解析。修改命令为:
npm install `@wangeditor/editor --save
方法二:使用双引号将整个命令括起来,以避免特殊字符的解析。修改命令为:
npm install "@wangeditor/editor" --save
二、editorconfig.menu_conf 对象中没有定义 uploadimage 属性。
效果
报错
解决
在 editorconfig.menu_conf
对象初始化之前添加如下代码
editorconfig.menu_conf = {};
wangeditor富文本使用及踩坑经历(增加图片上传、附件上传)
"@wangeditor/editor": "^5.1.1", "@wangeditor/plugin-upload-attachment": "^1.0.0",