摘要: <button class="btn" id="pass">批量通过</button> 问题原因:火狐浏览器中,button按钮默认类型为submit,会已form表单的形式提交。通过指定type为button即可 <button class="btn" type="button" id="pass 阅读全文
posted @ 2023-01-05 15:27 小菜菜爱吃菜 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 通过添加meta标签来控制页面缩放 <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, min 阅读全文
posted @ 2023-01-05 15:21 小菜菜爱吃菜 阅读(35) 评论(0) 推荐(0) 编辑
摘要: 在新版react中,develop环境中,严格模式(React.StrictMode)下会重复渲染两次的问题,在正式环境中不会重复渲染 issue 带来的问题: 接口会重复调用,在有些场景下重复调用接口会导致报错,develop下调试时带来不便 解决方案: 手动关闭严格模式,即不使用React.St 阅读全文
posted @ 2023-01-05 15:12 小菜菜爱吃菜 阅读(956) 评论(0) 推荐(0) 编辑
摘要: braft-editor中使用了浏览器对象window等,在next中使用时会报window is not defined相关错误 解决方案: src/home/conponents/editor/index.js import React from 'react'; // 引入编辑器组件 impo 阅读全文
posted @ 2023-01-05 14:58 小菜菜爱吃菜 阅读(233) 评论(0) 推荐(0) 编辑