reac-redux使用

Posted 鲨鱼小猫

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了reac-redux使用相关的知识,希望对你有一定的参考价值。

  • 创建store
  • store/index.ts
import  createstore  from "redux";
import  reducer  from " xxx/reducer";
export default createstore(reducer);
  • App.ts中引入store
import store from "xxx/store/index" ;
import  Provider  from "react-redux" ;
import A from 'xxx/a.ts'
import B from 'xxx/b.ts'

export default function App()
    return(
        <Provider store=store>
            <div>
                <A>
                <B>
            </div>
        </Provider>
    )

  • a.ts
    function A(props)
        return <button onClick=props.dispatch>点击</button>
    
    const mapDispatchToprops = dispatch => 
        return
            sendAction: () => 
                dispatch(
                    type:"add_ action"
                );
            
        
    
    export default connect(,mapDispatchToprops)(A);
  • b.ts
import  connect  from "react-redux" ;
function B()
    return(
        <p>this.props.xxxx</p>
    )

const mapstateToProps = state =>  
    return state;

export default connect(mapStateToProps)(B);

以上是关于reac-redux使用的主要内容,如果未能解决你的问题,请参考以下文章

reac-redux使用

测试使用

第一篇 用于测试使用

在使用加载数据流步骤的猪中,使用(使用 PigStorage)和不使用它有啥区别?

今目标使用教程 今目标任务使用篇

Qt静态编译时使用OpenSSL有三种方式(不使用,动态使用,静态使用,默认是动态使用)