随笔分类 - 一些问题
工作学习中遇见的问题与解决方法
摘要:测试时候使用网上找的链接遇到跨域问题,切换了本地运行的代码的地址暂时解决了。 将localhost换成自己的IP地址。
阅读全文
摘要:node-sass低版本与高版本的node会有兼容性问题,导致安装失败。 降低了node的版本来解决。 亲测可用版本: node版本v14.18.1 node-sass版本v4.13.0
阅读全文
摘要:1. 错误 在写一个新组件的时候,在父组件里面注册就报错 TypeError: Cannot create property 'isRootInsert' on string 'xxx' 2. 原因 原因是在子组件中没有写@Component({}) 无论子组件中有没有子子组件需要注册,都要写上@C
阅读全文
摘要:1. 需求: 2. 分析: 使用ant-design里面Table表格的可编辑单元格模板以及select选择器进行改造。 https://www.antdv.com/components/table-cn/#components-table-demo-editable-cells 将Table表格可
阅读全文
摘要:通过git clone完项目然后进行npm install 报错 1 npm ERR! git@192.168.48.48: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password). 2 npm ERR! fatal:
阅读全文