React hook中只在组件创建时运行一次 使用useEffect,并将第二个参数设置为[] function component(props: {}) { useEffect(() => {}, []); return <div/> }