我尝试将 Redux 与next.js 启动项目一起使用并安装next-redux-wrapper
到项目中,但我不确定该项目中的根文件在哪里。
我尝试按照next-redux-wrapper上显示的教程进行操作,但没有成功。没变化。
请帮助我如何将 Redux 添加到项目中。
问候。
我尝试将 Redux 与next.js 启动项目一起使用并安装next-redux-wrapper
到项目中,但我不确定该项目中的根文件在哪里。
我尝试按照next-redux-wrapper上显示的教程进行操作,但没有成功。没变化。
请帮助我如何将 Redux 添加到项目中。
问候。
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