文件名称:fetch-initial-data:react服务端渲染首次获取数据,首屏数据
文件大小:8KB
文件格式:ZIP
更新时间:2024-06-07 04:04:08
react fetch ssr server-side-rendering request
react服务端渲染首次获取数据 安装 npm install --save fetch-initial-data 使用演示 需要首次加载的组件 import {bindActionCreators} from 'redux'; class Home extends Component{ constructor(props){ super(props) //判断是否是浏览器 if(typeof window==="object")this.fetchData(); } //fetchData固定名称,必须返回异步,且所有action需要awiat async fetchData(){ await this.props.getDataAct(); } render(){ let {data}=this.props; re
【文件预览】:
fetch-initial-data-master
----.gitignore(285B)
----webpack.js(46B)
----package.json(763B)
----package-lock.json(7KB)
----src()
--------fetchInitialData.js(4KB)
----index.js(111B)
----README.md(1KB)
----source()
--------fetchInitialData.js(4KB)