清理yarn,pnpm的缓存 yarn cache clean pnpm store prune 查看yarn的缓存目录 yarn config get cache-folder 配置yarn的缓存目录 yarn config set cache-folder "E:\cache\yarn-cache-folder" 查看pnpm的缓存目录
1,执行以下命令查看缓存地址 npm config get cache 2,执行以下命令清理缓存 npm cache clean --force 3,修改缓存目录 npm config set cache "E:\cache\npm-cache"
antd Carousel 不自动切换 根据官方文档只需要配置autoplay={true} 完整代码如下: Carousel autoplay={true} {lunboDataElement} /Carousel
出现这个错误是因为需要解析的域名地址与当前网址url不一致,需要进行配置处理 在next.config.mjs或next.config.js中添加如下配置即可 images:{ domains:['www.bugkong.com'] },
在nextjs中使用useEffect可能会被执行两次 useEffect(() = { console.log(123) }) }, []); 本意是为了模拟立即卸载组件和重新挂载组件。帮助开发者提前发现重复挂载造成的Bug,提供的调试机制。 然后该机制在线上也会执行两次,这就是造成了困扰了
使用vue的v-html渲染数据时无法渲染回车,可以加入如下样式解决: white-space: pre-wrap;
使用vue开发,但是使用域名进行访问 即在C:\Windows\System32\drivers\etc\hosts 在这个文件中配置上域名,打开域名报错:invalid host header 解决方法是在vue.config.js中配置allowedHosts,将我们本地配置的域名加入到白名单即可 如下为示例代码: devServer: {
tinymce编辑器自定义上传图片报错 cannot read properties of undefined(read then) 这是因为tinymce6以后使用以前的上传方式不可用了 现在这个 images_upload_handler 需要返回一个promise对象 他的参数也和以前不一样了 这是以前的 images
Each child in a list should have a unique "key" prop 在进行循环组件时需要指定key,否则会引起混乱,如下需要指定key sysConfig?.topmenu.forEach((element:any)={ topRightMenus.push( span key={elemen
vsCode隐藏node_modules 点开社会,搜索files,在左侧找到Files,在右侧找到Files:Exclude,将node_modules添加进去即可
vscode导入ant desgin pro 报错此类错误:Cannot find module 'antd'.ts(2307) 我们可以打开vscode,在设置中搜索experimentalDecorators,将勾选中即可
在windows10上打开vsCode,允许yarn命令,报如下错误信息: cnpm : 无法加载文件 D:\Program Files\nodejs\node_global\cnpm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_P
VUE项目如何使整个app变灰 我们只需要在index.html里面的html标签里添加如下css接口 filter:grayscale(100%) 即如下: html lang="zh-cmn-Hans" style=" filter:grayscale(100%); " ....... /html
Do not use built-in or reserved HTML elements as component id: select 在uni-app中报错 Do not use built-in or reserved HTML elements as component id: select 此错误,原因是组件的名字不能与html标签一致,修
查找了资料,在tsconfig.json中添加如下代码即可 "jsx": "preserve", 代码片段如下: { "compilerOptions" : { "outDir" : "build/dist" , "module" : "esnext" , "target" : "esnext" ,
umi默认是不支持scss可以通过如下操作达到支持scss 1,安装sass-loader node-sass tyarn add sass-loader node-sass 2,安装插件 @umijs/plugin-sass tyarn add @umijs/plugin-sass 这样就可以了。