久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

您的位置:首頁技術(shù)文章
文章詳情頁

javascript - react router 匹配路由組件后如何在組件中 dispatch action 一次?

瀏覽:119日期:2023-04-30 10:38:46

問題描述

用到了 react, react-router 4.1.1, redux 3.7.0, react-redux 5.0.5

Route配置為 <Route path='/:id' component={ Datagrid }/>,其中 id 為 path 路徑,Datagrid 為一個(gè)展示數(shù)據(jù)表格的容器組件,主體內(nèi)容為antd的 Table 組件,其中 columns 和 dataSource 要求能根據(jù) path 切換,我想實(shí)現(xiàn)當(dāng)點(diǎn)擊 /user 時(shí)加載 user 的 columns 和 dataSource,當(dāng)點(diǎn)擊/odm 時(shí)加載 odm 的 columns 和 dataSource。

Datagrid 組件如下

import React, { Component } from ’react’import { Table, Button } from ’antd’import ’./index.less’import { fetchColumn } from ’../../actions/column’import { connect } from ’react-redux’import { withRouter } from ’react-router-dom’class Datagrid extends Component { render() { let id = this.props.match.params.id console.log(id) this.props.dispatch(fetchColumn(id)) return ( <p><Table columns={this.props.column}/> </p> ) }}const mapStateToProps = (state) => { return state}export default withRouter(connect(mapStateToProps)(Datagrid))

當(dāng)點(diǎn)擊 /user path 時(shí)確實(shí)可以加載 user 的 column,但是dispatch(fetchColumn(id))會(huì)無限循環(huán),如果把dispatch(fetchColumn(id))放在componentDidMount中,只會(huì)加載一次,當(dāng)點(diǎn)擊 /odm 時(shí) Datagrid 組件又不會(huì)重新渲染了,不知道該怎么搞。

問題解答

回答1:

class Datagrid extends Component { //用于第一次掛載時(shí)請(qǐng)求 componentDidMount() { let id = this.props.match.params.id console.log(id) this.props.dispatch(fetchColumn(id)) } //當(dāng)props發(fā)生改變時(shí)請(qǐng)求 componentWillReceiveProps(nextProps) { let id = this.props.match.params.id console.log(id) if(this.props.match.params.id != nextProps.match.params.id) {this.props.dispatch(fetchColumn(nextProps.match.params.id)) } } render() { return ( <p><Table columns={this.props.column}/> </p> ) }}回答2:

當(dāng)點(diǎn)擊/odm 時(shí)加載 odm 的 columns 和 dataSource。

那就在點(diǎn)擊事件里 dispatch 唄。

說錯(cuò)了,試試 componentDidUpdate。

標(biāo)簽: JavaScript
相關(guān)文章:
主站蜘蛛池模板: 自拍偷拍第一页 | 国产一区二区黑人欧美xxxx | 免费观看的黄色 | 亚洲福利社区 | 91精品视频在线播放 | 色综合国产 | 国产精品无码永久免费888 | 免费成人一级片 | 国产精品毛片 | 久久porn| 日韩不卡一区二区三区 | 成人精品电影 | 人人操日日干 | 国产a级大片 | 成人免费视频网站在线看 | 亚洲精品在线播放 | 国产精品一区二区三区免费 | 欧美国产日韩精品 | 日韩高清中文字幕 | 免费a爱片猛猛 | 91亚洲精品久久久 | 三级国产网站 | 伊人久久国产 | 精品不卡 | 91久久夜色精品国产网站 | 亚洲免费人成在线视频观看 | 日韩精品一区二区三区在线观看 | 国产91麻豆视频 | 国产精品美女久久久久久久久久久 | 欧美第一区 | 日韩精品专区 | 美女黄视频网站 | 精品国产乱码久久久久久密桃99 | 久久综合一区二区三区 | 6080yy精品一区二区三区 | 日本一二三区视频 | 国产高潮呻吟久久渣男片 | 91精品久久久久久久久 | 黄色免费网站在线看 | 亚洲精品在线免费播放 | 成年人网站国产 |