前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.Redux基础介绍 单向数据流:从父组件留向子组件,兄弟组件无法共享数据 Redux核心概念 State:React中的状态,是只读对象,不可直接修改 Reducer:基本函数,用于对State的业务处理 Action:普通对象,用于描述事件行为,改变State Redux工作流 Redux安…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.页面结构定义 左侧导航栏,右侧页面结构 右侧显示内容分别分为上Header.中Content和下Footer部分 二.目录结构定义 src->admin.js:项目主结构代码(index.js中替换App.js挂载到根节点) src->common.js:项目公共结构代码(类似admin.j…
实战 上接,笔记:https://blog.csdn.net/u010132177/article/details/104150177 https://gitee.com/pasaulis/react-guli 1)创建目录 src 目录下 api ajax相关 assets 公用资源 components 非路由组件 config 配置 pages 路由组件 utils 工具模块 Appj.s 应用根组件 index.js 入口js cmd指创建: mkdir api assets compo…
    最近做了一个后台管理系统主体框架是基于React进行开发的,因此系统的路由管理,选用了react-router(4.3.1)插件进行路由页面的管理配置. 实现原理剖析 1.hash的方式     以 hash 形式(也可以使用 History API 来处理)为例,当 url 的 hash 发生变化时,触发 hashchange 注册的回调,回调中去进行不同的操作,进行不同的内容的展示 function Router() { this.routes = {}; this.currentU…
随着Build 2016开发者大会的结束,HoloLens开发包也正式开放下载.Hololens没有独立的SDK,开发特性被集成到最新的Visual Studio Update 2中.如果你没有HoloLens真机,那么可以安装HoloLens模拟器. 安装清单 下载和安装 注意事项 Visual Studio 2015 Update 3 安装时确保勾选 Tools (1.4) and Windows 10 SDK (10.0.10586) HoloLens Emulator (build 10…
http://blog.csdn.net/pipisorry/article/details/39854707 使用的系统及软件 Ubuntu / windows Python 2.7 / python 3 Pycharm4, 5, 6 Openjdk/ jdk (orcal jdk) 安装python 1. Ubuntu 12.04系统自带python 2.7,直接用就行. 2. Ubuntu14.04 16.04 上装有两个版本的python:python2.7.6与python3.4,默认…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.城市管理 pages->city->index.js:对应路由/admin/city 顶部子组件一:选择表单 class FilterForm extends React.Component{ render(){ const { getFieldDecorator } = this.prop…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.使用Form组件开发登录页面 pages->form->login.js:对应路由/admin/form/login import React from 'react' import {Card, Form, Input, Button, message, Icon, Checkbox} f…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.React Router 4.0核心概念 4.0版本中已不需要路由配置,一切皆组件 react-router:基础路由包 提供了一些router的核心api,包括Router,Route,Switch等 react-router-dom:基于浏览器的路由(包含react-router) 提供了…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.创建角色 权限菜单设计:RBAC权限模型(详解链接) RBAC,即基于角色的访问控制(Role-Based Access Control),是优秀的权限控制模型 主要通过角色和权限建立管理,再赋予用户不同的角色,来实现权限控制的目标 角色列表展示:对应Easy Mock数据接口/role/li…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.创建员工表单子组件 创建员工.编辑员工.员工详情.删除员工共用一个Modal弹框表单 <Modal title={this.state.title} visible={this.state.isVisible} onOk={this.handleSubmit} onCancel={() =>…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.项目工程化概念  二.BaseForm的封装 城市管理中FilterForm子组件: 订单管理中FilterForm子组件: 员工管理中FilterForm子组件: [项目工程化]:表单封装 components->BaseForm->index.js 关键:抽象出formList,根据fo…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.头部固定 scroll属性:设置横向或纵向滚动,也可用于指定滚动区域的宽和高 <Card title="头部固定"> <Table bordered columns={columns} dataSource={this.state.dataSource} pagin…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.基础表格 Table组件基础Api bordered属性:是否展示外边框和列边框 columns属性:表格列的配置描述(即表头) dataSource属性:数据数组 pagination属性:分页器,设为 false 时不展示和进行分页 <Card title="基础表格"&g…
前言:以下内容基于React全家桶+AntD实战课程的学习实践过程记录.最终成果github地址:https://github.com/66Web/react-antd-manager,欢迎star. 一.按钮Button pages->ui->button.js:对应路由/admin/ui/buttons import React from 'react'; import {Card, Button, Radio} from 'antd' import './ui.less' class B…
day01 1. 项目开发准备 1). 描述项目 2). 技术选型 3). API接口/接口文档/测试接口 2. 启动项目开发 1). 使用react脚手架创建项目 2). 开发环境运行: npm start 3). 生产环境打包运行: npm run build serve build 3. git管理项目 1). 创建远程仓库 2). 创建本地仓库 a. 配置.gitignore b. git init c. git add . d. git commit -m "init" 3)…
一.布局及排版 1.布局src/pages/admin/header/index.jsx import React,{Component} from 'react' import './header.less' export default class Header extends Component{ render(){ return( <div className='header'> <div className='header-top'> <span>欢迎,adm…
一.admin页面布局及路由创建 0)cmd批量创建目录及子目录 //创建各个目录,及charts和子目录bar md home category product role user charts\bar charts\line charts\pie 或 mkdir home category product role user charts\bar charts\line charts\pie 目录结构 │ admin.jsx │ ├─category ├─charts │ ├─bar │ ├…
1.订单管理页面和商品管理页面类似,都是一个搜索组件+列表组件 2.搜索框search组件 import React from 'react';   class ListSearch extends React.Component{     constructor(props){         super(props);         this.state = {             orderNumber : ''         }     }     // 数据变化的时候     …
1.页面 2.品类列表展示 let listBody = this.state.list.map((category, index) => {             return (                 <tr key={index}>                     <td>{category.id}</td>                     <td>{category.name}</td>         …
引入了CategorySelector 二级联动组件.FileUploader图片上传组件和RichEditor富文本编辑组件 import React from 'react'; import MUtil from 'util/mm.jsx' import Product from 'service/product-service.jsx' import PageTitle from 'component/page-title/index.jsx'; import CategorySelect…
1.Simditor组件的github地址:https://github.com/mycolorway/simditor 网址:http://simditor.tower.im/ 2.在util里边新建rich-editor文件夹,里边新建index.jsx import React from 'react'; import Simditor from 'simditor'; import 'simditor/styles/simditor.scss'; import './index.scss…
1.React文件上传组件github地址: https://github.com/SoAanyip/React-FileUpload 2.Util里边新建file-uploader文件夹,里边新建index.jsx import React from 'react'; import FileUpload from './react-fileupload.jsx';   class FileUploader extends React.Component{     render(){      …
1.商品列表页面结构 <div id="page-wrapper">              <PageTitle title="商品列表">                  <div className="page-header-right">                      <Link to="/product/save" className="btn bt…
table-list组件可用于商品列表,用户列表页面 需要传入一个tableHeads集合和tablebody import React from 'react';   // 通用的列表 class TableList extends React.Component{     constructor(props){         super(props);         this.state = {             isFirstLoading: true         }    …
1.页面的结构 //遍历list, 返回数据       let listBody= this.state.list.map((user,index)=> {           return (            <tr key={index}>              <td>{user.id}</td>              <td>{user.username}</td>              <td>{u…
1.用户列表页面使用的rc-pagination分页组件 Github地址: https://github.com/react-component/pagination 2.安装 cnpm install --save-dev rc-pagination 3.引入 import React from 'react'; import RcPagination from 'rc-pagination'; import 'rc-pagination/dist/rc-pagination.min.css…
登录页面 <div className="col-md-4 col-md-offset-4">                <div className="panel panel-default login-panel">                    <div className="panel-heading">欢迎登录 - MMALL管理系统</div>                …
一.静态页面 目录结构 F:\Test\react-demo\admin-client\src\pages\admin\category add-cate-form.jsx index.jsx index.less update-cate-form.jsx 1. pages/category/index.jsx import React,{Component} from 'react' import { Button, Card, //引入卡片 Table, //引入表格 Icon, } fro…
一,功能点 实现管理员操作数据的记录.效果如下 二,代码实现 基于注解的Aop日志记录 1.Log实体类 package com.ideal.manage.guest.bean.log; import javax.persistence.*; import java.io.Serializable; import java.util.Date; /** * @apiNote 日志 * @author Yaming * @since 2019-01-24 */ @Entity @Table(nam…