前端项目实战肆佰肆拾贰react-admin和material ui-hook自定义监听事件

useEffect(() => {
    const handleAppViewHeight = (e: any) => {
      if (typeof e.data === 'object') {
        if (e.data.appHeight !== undefined) {
          setAppViewHeight(e.data.appHeight);
        }
      };
    };
    window.addEventListener('message', handleAppViewHeight);
    return () => window.removeEventListener('message', handleAppViewHeight);
  })

posted @ 2023-10-07 09:21  前端导师歌谣  阅读(11)  评论(0)    收藏  举报  来源