react
全栈编程网
这个作者很懒,什么都没留下…
展开
-
React Native 环境搭建遇到的坑
搭建网址:https://reactnative.cn/docs/getting-started.html 错误: 解决方案: 1.在根目录的XXXXX\android\app\src\main目录下新建assets文件夹 2.打开命令行,在自己项目根目录路径下面输入 react-native bundle --platform android --dev false -...原创 2019-06-19 22:15:42 · 183 阅读 · 0 评论 -
React 生命周期
目录 React 生命周期图 一、生命周期路径一,初始化组件过程 1、getDefaultProps 2、getInitialState 3、componentWillMount 4、render(渲染) 5、componentDidMount 二、生命周期路径二,更新组件过程 更新组件常用的两种方式: 三、生命周期路径三,卸载组件过程 React 生命周期图 图是盗的,可...原创 2019-06-17 15:55:08 · 186 阅读 · 0 评论 -
ES6 —— Promise
不使用 ES6 Promise 嵌套两个 setTimeout 回调函数 setTimeout(function(){ console.log('hello'); // 一秒后输出 “hello” setTimeout(function(){ console.log('world'); // 两秒后输出 “world” }, 1000) }, 1000); 使用 ES6 Promi...原创 2019-06-28 17:16:59 · 170 阅读 · 0 评论 -
npm 淘宝镜像
1, 设置淘宝镜像 npm config set registry https://registry.npm.taobao.org/ 2, 设置回原来的镜像 npm config set registry https://registry.npmjs.org/原创 2019-08-12 14:50:50 · 223 阅读 · 0 评论 -
dva中打包时使用hash文件名并自动添加到index.html
问题描述: 如果不用 hash文件名,而是固定文件名,可能导致前段缓存这个 js文件,导致需要经常清理缓存。通过动态的hash文件名可以解决这个问题。打包后webpack会自动注入带hash的文件地址到 index.ejs文件中。 1、在 .webpackrc 文件中添加 { "hash": true, // 文件名使用hash的方式进行打包 "html": { "t...原创 2019-08-28 19:47:18 · 1221 阅读 · 1 评论