13

我尝试将 Redux 与next.js 启动项目一起使用并安装next-redux-wrapper到项目中,但我不确定该项目中的根文件在哪里。

我尝试按照next-redux-wrapper上显示的教程进行操作,但没有成功。没变化。

请帮助我如何将 Redux 添加到项目中。

问候。

4

2 回答 2

17

Next.js 使用 App 组件来初始化页面。您可以覆盖它并控制页面初始化。

尽管此演示适用于 next.js,但它应该适用于 nextjs-starter。

安装下一个 redux 包装器:

npm install --save next-redux-wrapper

_app.js文件添加到./pages目录:

// pages/_app.js
import React from "react";
import {createStore} from "redux";
import {Provider} from "react-redux";
import App, {Container} from "next/app";
import withRedux from "next-redux-wrapper";

const reducer = (state = {foo: ''}, action) => {
    switch (action.type) {
        case 'FOO':
            return {...state, foo: action.payload};
        default:
            return state
    }
};

/**
* @param {object} initialState
* @param {boolean} options.isServer indicates whether it is a server side or client side
* @param {Request} options.req NodeJS Request object (not set when client applies initialState from server)
* @param {Request} options.res NodeJS Request object (not set when client applies initialState from server)
* @param {boolean} options.debug User-defined debug mode param
* @param {string} options.storeKey This key will be used to preserve store in global namespace for safe HMR 
*/
const makeStore = (initialState, options) => {
    return createStore(reducer, initialState);
};

class MyApp extends App {

    static async getInitialProps({Component, ctx}) {

        // we can dispatch from here too
        ctx.store.dispatch({type: 'FOO', payload: 'foo'});

        const pageProps = Component.getInitialProps ? await Component.getInitialProps(ctx) : {};

        return {pageProps};

    }

    render() {
        const {Component, pageProps, store} = this.props;
        return (
            <Container>
                <Provider store={store}>
                    <Component {...pageProps} />
                </Provider>
            </Container>
        );
    }

}

export default withRedux(makeStore)(MyApp);

然后,可以简单地连接实际的页面组件: 这个演示如何index.js在页面中连接。

import Link from "next/link";
import React from "react";
import {
  Container,
  Row,
  Col,
  Button,
  Jumbotron,
  ListGroup,
  ListGroupItem
} from "reactstrap";
import Page from "../components/page";
import Layout from "../components/layout";

import { connect } from "react-redux";

class Default extends Page {
  static getInitialProps({ store, isServer, pathname, query }) {
    store.dispatch({ type: "FOO", payload: "foo" }); // component will be able to read from store's state when rendered
    return { custom: "custom" }; // you can pass some custom props to component from here
  }
  render() {
    return (
      <Layout>content...</Layout>
    );
  }
}

export default connect()(Default);

更多信息请参考文档:next-redux-wrapper

于 2018-08-30T11:48:34.930 回答
0

首先,我使用“npx create-next-app”创建了简单的 next.js 应用程序

然后我在一个名为“store”的文件夹中创建了通用的 redux 设置。

这是文件夹结构 在此处输入图像描述

在页面中,我创建了一个 _app.js。里面的代码是这样的—— 在此处输入图像描述

如果有人在设置方面需要任何帮助,请告诉我...

于 2020-12-23T08:31:19.337 回答