随笔分类 - 踩坑记录
前端开发遇到的坑
摘要:/* 处理移动端上滑的白边 */ 方式1: ``css html, body { overflow: hidden; height: 100%; } `` 方式2: ``css body { position: fixed; top: 0; left: 0; right: 0; } ``
阅读全文
摘要:var a = [{id: 1},{id: 2}];var b = [...a];b[0].id = -1;console.log(a,b)
阅读全文
摘要:<FormControl fullWidth> <InputLabel>相位类型</InputLabel> <Select defaultValue={formik.values.currentphaseParameter['phaseType']} size="small" name={setFi
阅读全文
摘要:- 表单外调用 formik.submitForm()不生效,原因是某些验证不没有通过,yup等,关掉/处理掉就好了 - 修改了redux状态,本以为formik的初始化会随着redux的装改更新而改变,enableReinitialize且已经设置为true,但是formik并未改变,最终给red
阅读全文
摘要:const newPatterList = produce(patternList, draft => { console.log('方案列表与当前方案更新draft1', draft); let arr = draft.filter((item: any) => item.id curPatter
阅读全文