上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 83 下一页
摘要: http://caibaojian.com/react/usage-with-react.html 阅读全文
posted @ 2018-06-04 08:35 winyh 阅读(236) 评论(0) 推荐(0) 编辑
摘要: import React, { Component } from 'react'; import { render } from 'react-dom'; class GroceryList extends Component { handleClick(i) { console.log('You clicked: ' + this.props.items[i]); } ... 阅读全文
posted @ 2018-06-04 08:23 winyh 阅读(1516) 评论(0) 推荐(0) 编辑
摘要: Flux 的核心就是一个简单的约定:视图层组件不允许直接修改应用状态,只能触发 action。应用的状态必须独立出来放到 store 里面统一管理,通过侦听 action 来执行具体的状态操作。 所谓的单向数据流,就是当用户进行操作的时候,会从组件发出一个 action,这个 action 流到 s 阅读全文
posted @ 2018-04-20 16:39 winyh 阅读(920) 评论(0) 推荐(0) 编辑
摘要: --name 别名 -d 后台启动容器 -v 添加数据卷(映射宿主机目录到容器目录 /home/www --》宿主 /usr/share/nginx/html --》容器目录 ) -p 9001(本机 | 宿主机)端口 映射到 80(容器端口) 进入容器 退出容器 阅读全文
posted @ 2018-04-12 17:02 winyh 阅读(3796) 评论(0) 推荐(0) 编辑
摘要: 判断元素是否在可视区 阅读全文
posted @ 2018-04-12 12:04 winyh 阅读(227) 评论(0) 推荐(0) 编辑
上一页 1 ··· 56 57 58 59 60 61 62 63 64 ··· 83 下一页