嗨,我有一个组件将Redux集成到我的react应用程序中。我先讲第二部分,然后讲第三部分。我不希望将我在第一个组件中获得的数据传递给第二个,然后在道具中传递给第三个。
我想使用redux存储来做到这一点。有什么办法吗?
App.js
import React, { Component } from "react"; import logo from "./logo.svg"; import "./App.css"; import RoundedButton from "./RoundedButton"; import { connect } from "react-redux"; import { bindActionCreators } from "redux"; import * as actions from "./actions/index"; class App extends Component { constructor(props) { super(props); this.state = { score: 0, status: "", userSelected: "", computerSelected: "", visibility: [true, true, true], buttonVisibility: false }; this.clickitem = this.clickitem.bind(this); this.handlePlayAgain = this.handlePlayAgain.bind(this); } handlePlayAgain() { this.setState({ buttonVisibility: false, visibility: [true, true, true] }); } clickitem(user) { var url = "http://localhost:4000/generate-random"; this.setState({ userSelected: user }); fetch(url) .then(response => { if (response.status >= 400) { throw new Error("Bad response from server"); } return response.json(); }) .then(data => { var computer = data.item; this.setState({ computerSelected: computer }); if ( (user === "Rock" && computer === "Scissors") || (user === "Paper" && computer === "Rock") || (user === "Scissors" && computer === "Paper") ) { this.props.increment(); } else if (user === computer) { this.props.doNothing(); } else { this.props.decrement(); } console.log(user + " " + computer); console.log("------------------------------------"); App.contextTypes = { store: React.PropTypes.object }; let store = this.context.store; console.log(store); arrayvar = []; var arrayvar = []; if (user === "Rock" && computer === "Rock") { arrayvar = [true, false, false]; } else if (user === "Paper" && computer === "Paper") { arrayvar = [false, true, false]; } else if (user === "Scissors" && computer === "Scissors") { arrayvar = [false, false, true]; } else if ( (user === "Rock" && computer === "Paper") || (user === "Paper" && computer === "Rock") ) { arrayvar = [true, true, false]; } else if ( (user === "Rock" && computer === "Scissors") || (user === "Scissors" || computer === "Rock") ) { arrayvar = [true, false, true]; } else if ( (user === "Paper" && computer === "Scissors") || (user === "Scissors" || computer === "Paper") ) { arrayvar = [false, true, true]; } this.setState({ visibility: arrayvar }); this.setState({ buttonVisibility: true }); }); } render() { return ( <div className="CenterDiv"> <div className="AppTitle"> <b>Score: {this.props.score}</b> <div> {this.state.visibility[0] ? <RoundedButton text="Rock" clickitem={this.clickitem} label={ this.state.userSelected === "Rock" && this.state.computerSelected === "Rock" ? "User & Computer Selected" : this.state.userSelected === "Rock" ? "User Selected" : this.state.computerSelected === "Rock" ? "Computer Selected" : "" } /> : null} {this.state.visibility[1] ? <RoundedButton text="Paper" clickitem={this.clickitem} label={ this.state.userSelected === "Paper" && this.state.computerSelected === "Paper" ? "User & Computer Selected" : this.state.userSelected == "Paper" ? "User Selected" : this.state.computerSelected === "Paper" ? "Computer Selected" : "" } /> : null} {this.state.visibility[2] ? <RoundedButton text="Scissors" clickitem={this.clickitem} label={ this.state.userSelected === "Scissors" && this.state.computerSelected === "Scissors" ? "User & Computer Selected" : this.state.userSelected === "Scissors" ? "User Selected" : this.state.computerSelected === "Scissors" ? "Computer Selected" : "" } /> : null} </div> <div className="Status">{this.props.status}</div> {this.state.buttonVisibility ? <button onClick={this.handlePlayAgain} style={{ margin: 30 }}> Play Again </button> : null} </div> </div> ); } } function mapStateToProps(state) { return { score: state.score, status: state.status }; } export default connect(mapStateToProps, actions)(App);
index.js
import React from "react"; import ReactDOM from "react-dom"; import App from "./App"; import registerServiceWorker from "./registerServiceWorker"; import "./index.css"; import { Provider } from "react-redux"; import { createStore } from "redux"; import scoreReducer from "./reducers"; let store = createStore(scoreReducer); ReactDOM.render( <Provider store={store}><App /></Provider>, document.getElementById("root") ); registerServiceWorker();
secondcomponent.js
export default class SecondComponent extends Component { render() { return ( // print score which is in redux ); } }
第三component.js
export default class ThirdComponent extends Component { render() { return ( // print score which is in redux ); } }
在多个组件中访问redux存储的方式是什么?
任何 包装有connect以下内容的组件:
connect
connect(mapStateToProps, actions)(AnyComponent);
将有权访问 整个 redux商店。 有了,mapStateToProps您就可以通过将仅相关的数据从redux存储传递到连接的组件props。
redux
mapStateToProps
props
关于组件内部state,我的经验法则是仅为与特定组件相关的数据设置内部状态。 例如,extend或collapse为下拉菜单指定状态。
state
extend
collapse
至于ajax请求,如果您已经使用过,redux我强烈建议对thunks或使用操作,sagas并将新获取的数据通过以下redux流程传递: 操作/ thunk- > Reducers->连接的组件。
ajax
thunks
sagas
编辑 作为注释的后续操作, 您不需要传递要连接到提供者的每个组件,只需传递一个根组件(App在您的情况下),并且如有必要,每个子组件都App可以连接到redux:
App
class SecondComponent extends Component { render() { return ( // print score which is in redux <div>this.props.score</div> ); } } export default connect(mapStateToProps)(SecondComponent);
以及其他组件:
class ThirdComponent extends Component { render() { return ( // print score which is in redux <div>this.props.score</div> ); } } export default connect(mapStateToProps)(ThirdComponent);
编辑#2 作为其他评论的后续内容:
因此,将属性值传递给组件或使用上述方法,建议使用Idk吗?
尽可能避免连接组件并将道具传递给孩子,其主要原因是为了防止对的依赖redux。 我更喜欢使组件保持“哑巴”状态,并让它们仅关注外观。 我确实有一些有关事情应该如何工作的组件,这些组件主要是处理逻辑并将数据传递给孩子,它们是我经常连接的组件。
当我注意到我的应用程序正在扩展并且我的某些组件正在充当道具的代理时(我什至得到了一个名字!“ Propxy”),这就是说他们从父母那里获得了道具,并在不使用它们的情况下将其传递了下来,我通常将一个连接的组件注入到组件树的中间,这样我就可以让“ proxy”组件顺着树流变得更轻和更细。