React Redux react-redux问题

时间:2018-07-25 16:21:34

标签: reactjs redux

我想在代码中使用react redux react-redux,问题是当我单击按钮时,颜色,文字和作者没有变化?

import React from 'react';
import ReactDOM from 'react-dom';
import 'materialize-css/dist/css/materialize.css';
import 'materialize-css/dist/js/materialize.js';
import {Provider,connect} from 'react-redux';
import {createStore} from 'redux';


//redux
const words = [
    'In my dual profession as an educator and health care provider, I have worked with numerous children infected with the virus that causes AIDS. ',
    'The relationships that I have had with these special kids have been gifts in my life. They have taught me so many things, but I have especially learned that great courage can be found in the smallest of packages. Let me tell you about Tyler.',
    'Tyler was born infected with HIV: his mother was also infected. From the very beginning of his life, he was dependent on medications to enable him to survive. When he was five',
    'he had a tube surgically inserted in a vein in his chest. This tube was connected to a pump, which he carried in a small backpack on his back. ',
    'Medications were hooked up to this pump and were continuously supplied through this tube to his bloodstream. At times, he also needed supplemented oxygen to support his breathing.',
    'Tyler wasn’t willing to give up one single moment of his childhood to this deadly disease. It was not unusual to find him playing and racing around his backyard,',
    'wearing his medicine-laden backpack and dragging his tank of oxygen behind him in his little wagon. All of us who knew Tyler marveled at his pure joy in being alive and the energy it gave him. Tyler’s mom often teased him by telling him that he moved so fast she needed to dress him in red.',
    'That way, when she peered through the window to check on him playing in the yard, she could quickly spot him.',
    'This dreaded disease eventually wore down even the likes of a little dynamo like Tyler. He grew quite ill and, unfortunately',
    ' When it became apparent that he wasn’t going to survive, Tyler’s mom talked to him about death. She comforted him by telling Tyler that she was dying too,'
];
const colors=[   
    'red','green','blue','white','purple','yellow','pink','silver','gray','orange'
];
const authors=[
    'red','green','blue','white','purple','yellow','pink','silver','gray','orange'
];

let aa = Math.floor(Math.random()*10);

const actionCreator = () => {
    return{
        type:'UUU',
        word:words[aa],
        color:colors[aa],
        author:authors[aa]
    }
};
const defaultState = {
    color:'red',
    word:' When it became apparent that he wasn’t going to survive, Tyler’s mom talked to him about death. She comforted him by telling Tyler that she was dying too,',
    author:'red'
}
const reducer = (state = defaultState , action) => {
    switch (action.type) {
        case 'UUU':
            return {
                word:action.word,
                color:action.color,
                author:action.author
            }
        default:
            return state;
    }
}
const store = createStore(reducer);

//react
class Web extends React.Component{
    constructor(props) {
        super(props);
        this.ddd=this.ddd.bind(this);
    }
    ddd(){
        setTimeout(() => {
            this.setState({
                word:this.props.word,
                color:this.props.color,
                author:this.props.author
            })
        },600)
    }

    render(){
        return(
            <div id='quote-box' className='container center'>
                <section style = {{backgroundColor: this.props.color,width:'100%',height:300}}>
                    <div style={{paddingTop:20}}>
                    <blockquote id='text'>“{this.props.word}”</blockquote>
                    <blockquote id='author'>“{this.props.author}”</blockquote>
                    </div>
                    <div>
                    <a id='tweet-quote' href='twitter.com/intent/tweet' style={{marginTop:120,marginRight:20}} className='waves-effect waves-light btn red'>Twitter</a>
                    <a style={{marginTop:120,marginRight:20}} className='btn waves-effect waves-light yellow'>b</a>
                    <a id='new-quote' style={{marginTop:120}} className='btn waves-effect waves-light green' onClick={this.ddd}>NEXT</a>
                    </div>
                </section>
                <b>by hutu zhu</b>
            </div>
        );
    }   
}

// react-redux
const mapStateToProps = (state = defaultState) => defaultState;

const mapDispatchToProps = (dispatch) => {
    return {
        onClick: () => dispatch(actionCreator())
    }
}
const Contain = connect(mapStateToProps,mapDispatchToProps)(Web);

class Wrapper extends React.Component{
    render(){
        return(
            <Provider store={store}>
                <Contain/>
            </Provider>
        );
    }
}
ReactDOM.render(<Wrapper/>,document.getElementById('root'));

1 个答案:

答案 0 :(得分:-1)

您需要更改几个功能。在更新的代码下面找到。 JS小提琴链接-https://jsfiddle.net/8nmfn0q5/451/

    import React from 'react';
        import ReactDOM from 'react-dom';
        import 'materialize-css/dist/css/materialize.css';
        import 'materialize-css/dist/js/materialize.js';
        import { Provider, connect } from 'react-redux';
        import { createStore } from 'redux';


        //redux
        const words = [
            'In my dual profession as an educator and health care provider, I have worked with numerous children infected with the virus that causes AIDS. ',
            'The relationships that I have had with these special kids have been gifts in my life. They have taught me so many things, but I have especially learned that great courage can be found in the smallest of packages. Let me tell you about Tyler.',
            'Tyler was born infected with HIV: his mother was also infected. From the very beginning of his life, he was dependent on medications to enable him to survive. When he was five',
            'he had a tube surgically inserted in a vein in his chest. This tube was connected to a pump, which he carried in a small backpack on his back. ',
            'Medications were hooked up to this pump and were continuously supplied through this tube to his bloodstream. At times, he also needed supplemented oxygen to support his breathing.',
            'Tyler wasn’t willing to give up one single moment of his childhood to this deadly disease. It was not unusual to find him playing and racing around his backyard,',
            'wearing his medicine-laden backpack and dragging his tank of oxygen behind him in his little wagon. All of us who knew Tyler marveled at his pure joy in being alive and the energy it gave him. Tyler’s mom often teased him by telling him that he moved so fast she needed to dress him in red.',
            'That way, when she peered through the window to check on him playing in the yard, she could quickly spot him.',
            'This dreaded disease eventually wore down even the likes of a little dynamo like Tyler. He grew quite ill and, unfortunately',
            ' When it became apparent that he wasn’t going to survive, Tyler’s mom talked to him about death. She comforted him by telling Tyler that she was dying too,'
        ];
        const colors=[   
            'red','green','blue','white','purple','yellow','pink','silver','gray','orange'
        ];
        const authors=[
            'red','green','blue','white','purple','yellow','pink','silver','gray','orange'
        ];



        const actionCreator = () => {
let aa = Math.floor(Math.random()*10);
            return {
                type:'UUU',
                word:words[aa],
                color:colors[aa],
                author:authors[aa]
            }
        };
        const defaultState = {
            color:'red',
            word:' When it became apparent that he wasn’t going to survive, Tyler’s mom talked to him about death. She comforted him by telling Tyler that she was dying too,',
            author:'red'
        }
        const reducer = (state = defaultState , action) => {
            switch (action.type) {
                case 'UUU':
                    return {
                        word:action.word,
                        color:action.color,
                        author:action.author
                    }
                default:
                    return state;
            }
        }
        const store = createStore(reducer);

        //react
        class Web extends React.Component{
            constructor(props) {
                super(props);
                this.ddd=this.ddd.bind(this);
            }
            ddd(){
                setTimeout(() => { this.props.onClick(); },600)
            }

            render(){
                return(
                    <div id='quote-box' className='container center'>
                        <section style = {{backgroundColor: this.props.color,width:'100%',height:300}}>
                            <div style={{paddingTop:20}}>
                            <blockquote id='text'>“{this.props.word}”</blockquote>
                            <blockquote id='author'>“{this.props.author}”</blockquote>
                            </div>
                            <div>
                            <a id='tweet-quote' href='twitter.com/intent/tweet' style={{marginTop:120,marginRight:20}} className='waves-effect waves-light btn red'>Twitter</a>
                            <a style={{marginTop:120,marginRight:20}} className='btn waves-effect waves-light yellow'>b</a>
                            <a id='new-quote' style={{marginTop:120}} className='btn waves-effect waves-light green' onClick={this.ddd}>NEXT</a>
                            </div>
                        </section>
                        <b>by hutu zhu</b>
                    </div>
                );
            }   
        }

        // react-redux
        const mapStateToProps = (state) => {
            return {
                word: state.word,
                color: state.color,
                author: state.author
            }
        }

        const mapDispatchToProps = (dispatch) => {
            return {
                onClick: () => dispatch(actionCreator())
            }
        }
        const Contain = connect(mapStateToProps,mapDispatchToProps)(Web);

        class Wrapper extends React.Component{
            render(){
                return(
                    <Provider store={store}>
                        <Contain/>
                    </Provider>
                );
            }
        }
        ReactDOM.render(<Wrapper/>,document.getElementById('root'));
相关问题