摘要: 官网:https://reacttraining.com/react-router/web/; 安装:npm i react-router-dom 基础知识 重定向<Redirect> 具体使用 有两种使用方式,假装成为组件式使用和方法式使用。 方法式使用 路由传参 阅读全文
posted @ 2019-05-30 17:42 沉默的末1993 阅读(440) 评论(0) 推荐(0) 编辑
摘要: Redux state 只读对象,不能直接修改 Reducer 对state进行修改 action 描述用户行为,用于沟通组件和redux 流程 首先组件component中事件触发行为action,分发到reducer中,reducer根据传来的action对state进行处理,state在传递到 阅读全文
posted @ 2019-05-29 17:00 沉默的末1993 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 需求:打印页面的元素可配置,并且样式修改较多 解决:跳转新页面打印 当前页跳转到打印页面: var wind = window.open(`/index.php/home/printPur?id=${this.recordId}&type=${this.transType}`,'_blank'); 阅读全文
posted @ 2019-05-27 09:37 沉默的末1993 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 本质:是使用node中的babel将es6转码为es5再执行;导出的值允许变化 import基本用法: require 区别: require是在运行执行;import引入依赖,在编译时执行 阅读全文
posted @ 2019-05-27 09:16 沉默的末1993 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 1、整体分析 公共部分:侧边栏、头部、尾部 实现:src下components创建NavLeft、Header、Footer文件夹,在文件夹里分别创建index.js、index.css 主页:src下admin.js和admin.css,并修改app.js的引入admin;admin.js引入公共 阅读全文
posted @ 2019-05-23 16:01 沉默的末1993 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 定义:两行文字基线之间的距离。 文本中的线: 行高的组成:上间距 + 文本的高度+下间距(上间距:定线到最上方的距离;文本高度:顶线和底线之间的距离;下间距:底线到最下方的距离) linebox:每一行称为line box;由许多inline-box组成。 这只是一行普通文字,这里有个标签是匿名内联 阅读全文
posted @ 2019-05-23 13:29 沉默的末1993 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 1、登陆git,新建一个仓库 2、mac在要上传的文件夹处打开终端 3、git init 4、git add . git commit -m 'reason'. git remote add origin 仓库url --allow-unrelated-histories 5、git push or 阅读全文
posted @ 2019-05-13 16:23 沉默的末1993 阅读(278) 评论(0) 推荐(0) 编辑
摘要: input::-webkit-outer-spin-button, input::-webkit-inner-spin-button { -webkit-appearance: none; } input[type="number"]{ -moz-appearance: textfield; } 阅读全文
posted @ 2019-05-13 12:39 沉默的末1993 阅读(3598) 评论(0) 推荐(0) 编辑
摘要: 使用yarn前记得安装yarn 查看当前vue-cli版本:vue -V; 升级版本需卸载旧版本:npm uninstall vue-cli -g 或者使用yarn: yarn global remove vue-cli; 升级版本:npm install -g @vue/cli. 或者使用yarn 阅读全文
posted @ 2019-05-10 13:49 沉默的末1993 阅读(270) 评论(0) 推荐(0) 编辑
摘要: 按需引入antd 1、yarn add react-app-rewired customize-cra 2、根目录下创建config-overrides.js 3、yarn add babel-plugin-import 这样就可以按需引入antd组件 但有的时候需要使用less,如修改主题 解决办 阅读全文
posted @ 2019-05-05 15:29 沉默的末1993 阅读(361) 评论(0) 推荐(0) 编辑