react-formily踩坑实记
本文使用的是 formily 2.* 版本
理论
官方文档
formily 主站:https://formilyjs.org/zh-CN
formily 核心库 core:https://core.formilyjs.org/zh-CN
本文使用的是 formily 2.* 版本
formily 主站:https://formilyjs.org/zh-CN
formily 核心库 core:https://core.formilyjs.org/zh-CN
题目链接:https://github.com/type-challenges/type-challenges/blob/master/README.zh-CN.md
熟悉常见的类型体操动作
useEffect 是进行批量顺序执行的。
如果两个连着的 useEffect 则是会顺序执行。
test demo:
const { useEffect, useState } = React;
const TestComponent = ({
parentConfig
}) => {
const [ isShow, setIsShow ] = useState(false);
const [ config, setConfig ] = useState({});
useEffect(() => {
setConfig(parentConfig)
setIsShow(false)
console.log('first: ', isShow, parentConfig)
}, [parentConfig])
useEffect(() => {
setIsShow(Object.keys(config).length > 0)
console.log('second: ', isShow)
}, [config])
useEffect(() => {
console.log('update isShow: ', isShow, '=========')
}, [isShow])
console.log('render TestComponent');
return (
isShow && <div>test</div>
)
}
function App() {
const [ parentConfig, setParentConfig ] = useState({a: 1});
console.log('render App')
return (
<div className="App">
<button onClick={() => setParentConfig(Object.keys(parentConfig).length > 0 ? {} : {a: 1})}>
switch parentConfig
</button>
<TestComponent parentConfig={parentConfig} />
</div>
);
}
ReactDOM.render(
<App />,
document.getElementById('root')
);
之前写微信小程序的时候使用的微信小程序自带的实时日志 API ,微信小程序端将错误信息进行上报,可以在微信小程序公众平台上进行查看。
当前公司使用的是 Sentry.io 管理前端异常。需要手动上传当前登录用户的信息和错误信息。然后在 Sentry 错误信息管理平台进行查看报错信息和系统性能。
Sentry’s SDK hooks into your runtime environment and automatically reports errors, uncaught exceptions, and unhandled rejections as well as other types of errors depending on the platform.
Sentry 后端系统可以使用 python 进行搭建。