이번에는 관리 시스템을 구현하기 위해 React with antd 구성 요소를 사용하는 방법과 관리 시스템을 구현하기 위해 React with antd 구성 요소를 사용할 때 주의사항이 무엇인지 보여드리겠습니다.
create-react-app 스캐폴딩 사용
구체적인 기본 구성은
antd 구성 요소로 구현된 관리 시스템 데모, 온라인 주소
개발 전 반영
1을 참조하세요. import는 동적으로 로드된 모듈의 함수인 import(매개변수)이고, 매개변수는 모듈 주소입니다.
참고: 가져오기 후에 Promise 객체가 반환됩니다.import('/components/chart').then(mud => { dosomething(mod) });
class Bundle extends Component { constructor(props) { super(props); this.state = { mod: null }; } unmount = false componentDidMount = () => { // 加载组件时,打开全局loading this.props.dispatch(loading(true)) this.load(this.props) } componentWillUnmount = () => { this.unmount = true } componentWillReceiveProps(nextProps) { if (nextProps.load !== this.props.load) { this.load(nextProps) } } load(props) { if (this.state.mod) { return true } //注意这里,使用Promise对象; mod.default导出默认 props.load().then((mod) => { if (this.unmount) { // 离开组件时,不异步执行setState this.props.dispatch(loading(false)) return false } this.setState({ mod: mod.default ? mod.default : mod }, _ => { // 组件加载完毕,关闭loading this.props.dispatch(loading(false)) }); }); } render() { return this.state.mod ? this.props.children(this.state.mod) : null; } }
<Bundle load={() => import('路径')}> {Comp => { return Comp ? <Comp /> : <p>加载中...</p> }} </Bundle>
2 전역 로딩
은 redux와 협력합니다. 디스패치 => 리듀서 업데이트 => mapstate 업데이트. 렌더링을 로드하려면
자세한 내용은 이 데모 주소 src/routers/router.js - render function3을 참조하세요. 라우팅 객체를 구성하세요
프로젝트 레이아웃은 다음과 같습니다
이것 데모는 공식 router4를 사용합니다. 문서 데모는 단일 라인 경로(예: Vue 라우터)이며 통합 구성 개체가 없습니다. 관리 시스템은 기본적으로 비즈니스 개발을 위한 콘텐츠를 중심으로 이루어집니다. 공통 구성을 구축하면 router.config.js
const routers = [ { menuName: '主页', menuIco: 'home', component: 'home/home.js', // 主页 path: '/admin/home' // 主页 }, { menuName: '用户', menuIco: 'user', children: [ { menuName: '用户列表', component: 'user/list.js', // 主页 path: '/admin/user/list' // 主页 } ] }, { menuName: '多级菜单', menuIco: 'setting', children: [ { menuName: '多级菜单2', children: [ { menuName: '菜单', component: 'user/list.js', // 主页 path: '/admin/user/list3' // 主页 } ] } ] }, { menuName: '关于我', menuIco: 'smile-o', component: 'about/about.js', // 主页 path: '/admin/about' // 主页 } ]
<Admin> <Content { ...this.props } breadcrumb={this.state.breadcrumb}> {this.props.children} </Content> </Admin> // Content组件内部 render() { return ( <p> {this.props.children} </p> ) } // 本demo实现,详见src/routers/router.js <Route path="/admin" render={item => ( <Admin {...item} { ...this.props }> {initRouters.map(el => this.deepItem(el, { ...this.props, ...item}))} </Admin> )} />
4. 일반 리듀서 구성
비즈니스 시나리오의 일부 컴포넌트는 상태 개선이 필요합니다. 상태 개선을 이해하려면 과학적으로 온라인에 접속하세요)
import otherReducers from './otherReducers' const App = combineReducers({ rootReducers, ...otherReducers // 其他需要增加的reducers })
5. 로그인 확인
페이지 리디렉션 시 실행되는 withRouter 기능을 사용하세요
const newWithRouter = withRouter(props => { // .... })
return <Redirect to="/login" />
6. 경로 차단
위와 동일하게 라우팅 구성 및 권한에 따라 해당 메뉴로 돌아가거나
return <Redirect to={其他} />
7 기타 구성
7-1. 사용자 정의 스타일
// 修改webpack.config.dev.js 和 webpack.config-prod.js 配置文件 { test: /\.(css|less)$/, // 匹配src的都自动加载css-module include: [/src/], exclude: [/theme/], use: [ require.resolve('style-loader'), { loader: require.resolve('css-loader'), options: { importLoaders: 1, modules: true, // 新增对css modules的支持 localIdentName: '[path]_[name][local]_[hash:base64:5]' } }, { loader: require.resolve('postcss-loader'), options: { // Necessary for external CSS imports to work // https://github.com/facebookincubator/create-react-app/issues/2677 ident: 'postcss', plugins: () => [ require('postcss-flexbugs-fixes'), autoprefixer({ browsers: [ '>1%', 'last 4 versions', 'Firefox ESR', 'not ie < 9', // React doesn't support IE8 anyway ], flexbox: 'no-2009' }) ] } }, { loader: require.resolve('less-loader') // compiles Less to CSS } ] }, { // 不匹配node_modules,theme的都不能自动加载css-module test: /\.(css|less)$/, include: [/node_modules/,/theme/], use: [ { loader: "style-loader" }, { loader: "css-loader", options: { importLoaders: 1 } }, { loader: require.resolve('less-loader') // compiles Less to CSS } ] },
App.js의
import './assets/theme/App.less'
// 安装react-hot-loader npm install --save-dev react-hot-loader
{ test: /\.(js|jsx|mjs)$/, include: paths.appSrc, loader: require.resolve('babel-loader'), options: { // This is a feature of `babel-loader` for webpack (not Babel itself). It // enables caching results in ./node_modules/.cache/babel-loader/ directory for // faster rebuilds. cacheDirectory: true, plugins: [ 'react-hot-loader/babel' ] } },
import { AppContainer } from 'react-hot-loader' const render = Component => { ReactDOM.render( <AppContainer> <Component></Component> </AppContainer>, document.getElementById('root') ) } render(App) if(module.hot) { module.hot.accept('./App',() => { render(App); }); }
homepage:'.'
Vue를 사용하여 SMS 확인 성능을 최적화하는 방법
Vue에서 vue-i18 플러그인을 사용하여 다국어 전환을 달성하세요
위 내용은 관리 시스템을 구현하기 위해 antd 구성 요소와 반응을 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!