上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 101 下一页
摘要: 服务器与客户端工作原理比较 服务器 客户端 备注 http server 事件处理循环 接收事件 容器类(application server) window(rootviewcontroller) 分发事件到对应的处理单元 serverlet view/viewcontroller 进行具体的业务 阅读全文
posted @ 2019-07-16 14:56 zzfx 阅读(536) 评论(0) 推荐(0)
摘要: 操作系统 编程语言 开发环境 开发平台: 开发平台是指以某种编程语言或者某几种编程语言为基础,开发出来的一个软件,而这软件不是一个最终的软件产品,它是一个二次开发软件框架,用户可以在这个产品上进行各种各样的软件产品的开发,并且在这个产品上进行开发的时候,不需要像以往的编程方式那样编写大量的代码,而是 阅读全文
posted @ 2019-07-16 14:25 zzfx 阅读(886) 评论(0) 推荐(0)
摘要: 阅读是一种脑力活动,脑力活动主要运用的就是我们的大脑,所以了解大脑的结构和偏好,可以使我们在阅读的时候事半功倍。 比如,了解了大脑分左脑和右脑,还可以分爬虫脑、哺乳动物脑和皮质脑,就会更了解大脑的功能,了解了大脑的各种偏好,在用脑的时候也会有很多便利。 人类的大脑会优先处理图形图像信息,越是抽象的的 阅读全文
posted @ 2019-07-14 15:47 zzfx 阅读(804) 评论(0) 推荐(0)
摘要: 一群人运用科学知识使用各类材料构建产品的过程 工程的本质是分解与组合(集成)、分工与合作 阅读全文
posted @ 2019-07-13 16:03 zzfx 阅读(833) 评论(0) 推荐(0)
摘要: 异步的本质是不确定性。 事件发生在时间上的不确定性; 或者说在请求响应的模型中引入了时间的概念。 阅读全文
posted @ 2019-07-13 15:45 zzfx 阅读(477) 评论(0) 推荐(0)
摘要: response = request() request(callback(response)); request(delegate(response)); response = await request(); monad[request()].then(response); obseverabl 阅读全文
posted @ 2019-07-12 18:35 zzfx 阅读(227) 评论(0) 推荐(0)
摘要: 我们都知道高阶函数是什么, 高阶组件其实是差不多的用法,只不过传入的参数变成了react组件,并返回一个新的组件. A higher-order component is a function that takes a component and returns a new component. 形 阅读全文
posted @ 2019-07-12 16:28 zzfx 阅读(309) 评论(0) 推荐(0)
摘要: redux = monand + pipeline + highorder componet + decouple + middleware redex = store based + event handler redux = function managers redux = 状态处理的流程管理 阅读全文
posted @ 2019-07-12 15:09 zzfx 阅读(254) 评论(0) 推荐(0)
摘要: 要素: 1、高阶函数:reduce; 2、处理函数:reducer; 3、数据:可以是具体数据、签名相同的普通函数、签名相同的高阶函数; reduce(reducer, datas(data or funciton), initResult(optional)) 一、平凡数据处理 1 In [5]: 阅读全文
posted @ 2019-07-12 15:07 zzfx 阅读(297) 评论(0) 推荐(0)
摘要: let newStore = applyMiddleware(mid1, mid2, mid3, ...)(createStore)(reducer, null); 给({ getState, dispatch }) => next => action签名的函数组分步赋值并进行串联的过程; 整体上是 阅读全文
posted @ 2019-07-12 12:37 zzfx 阅读(222) 评论(0) 推荐(0)
摘要: What’s is the benefit / drawback of these two alternatives? Using object spread options = {...optionsDefault, ...options}; Or using Object.assign opti 阅读全文
posted @ 2019-07-12 12:02 zzfx 阅读(312) 评论(0) 推荐(0)
摘要: spring和springMvc: 1. spring是一个一站式的轻量级的java开发框架,核心是控制反转(IOC)和面向切面(AOP),针对于开发的WEB层(springMvc)、业务层(Ioc)、持久层(jdbcTemplate)等都提供了多种配置解决方案; 2. springMvc是spri 阅读全文
posted @ 2019-07-10 16:22 zzfx 阅读(6056) 评论(1) 推荐(0)
摘要: 世界观和方法论是一致的,有怎样的世界观就有怎样的方法论。 世界观是对世界的认识与描述; 方法论是对世界(当前状态)的改造; 世界观与方法论是一个统一的整体,有什么样的世界观就有什么样的方法论,世界观指导方法论,方法论贯彻世界观,二者之间相辅相成,缺一不可。 一般来说,方法论是在世界观之上的产物 你的 阅读全文
posted @ 2019-07-09 17:15 zzfx 阅读(3784) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/CrazyWL/p/7283600.html 阅读全文
posted @ 2019-07-09 15:54 zzfx 阅读(184) 评论(0) 推荐(0)
摘要: export default 和 export 的主要区别 在于对应的import的区别:export 对应的 import 需要知道 export抛出的变量名或函数名 import{a,b}export default对应的 import 不需要知道 export抛出的变量名或函数名 import 阅读全文
posted @ 2019-07-09 11:37 zzfx 阅读(299) 评论(0) 推荐(0)
摘要: Called to determine whether the change in props and state should trigger a re-render. Component always returns true. PureComponent implements a shallo 阅读全文
posted @ 2019-07-08 14:41 zzfx 阅读(342) 评论(0) 推荐(0)
摘要: Worldview in Context Figures 1 and 2 provide a basis for a deeper understanding of worldview. The sensing, thinking, knowing, acting self exists in th 阅读全文
posted @ 2019-07-06 21:42 zzfx 阅读(222) 评论(0) 推荐(0)
摘要: 1、知人者智,自知者明; 2、江山易改,本性难移; 3、谁是我们的朋友,谁是我们的敌人,这是革命的首要问题; 4、坚守自己的利益; 5、 阅读全文
posted @ 2019-07-06 15:58 zzfx 阅读(221) 评论(0) 推荐(0)
摘要: How Does React Native Work? The idea of writing mobile applications in JavaScript feels a little odd. How is it possible to use React in a mobile envi 阅读全文
posted @ 2019-07-05 19:04 zzfx 阅读(329) 评论(0) 推荐(0)
摘要: 面向virtual DOM编程 vs 面向native componet编程; 状态编程引起的UI变化会全部提交到native compnent然后走平台原来的渲染流程。 The DOM is just one of the rendering environments React can rend 阅读全文
posted @ 2019-07-05 18:44 zzfx 阅读(740) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 101 下一页