遇到的坑
caroline_cai
..
展开
-
[Intervention] Unable to preventDefault inside passive
滑动的时候报错: [Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.解决方案:全局css样式添加* { touch-action: pan-y; }原创 2021-12-24 16:39:32 · 458 阅读 · 0 评论 -
Warning: Can‘t perform a React state update on an unmounted component.
报错如下:Warning: Can't perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in the componentWillUnmount method.原因:react组件已经原创 2021-12-23 09:25:22 · 992 阅读 · 0 评论 -
h5 input type=file 文件上传取消事件
Error in v-on handler: “TypeError: Cannot read property ‘type’ of undefined”Error in v-on handler: “TypeError: Cannot read property ‘size’ of undefined”当点击右上角取消时,会出现以上的报错打开控制台输出发现是file为undefined解决方法:判断file是否为undefined// 图片上传 getFile(e){ l原创 2021-06-17 10:12:20 · 1704 阅读 · 0 评论