上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 101 下一页
摘要: 这篇文章的全局观和思路一级棒! The Fairy Tale Cast your mind back to 2010 when users started to demand interactive web applications. Back then the only real solution 阅读全文
posted @ 2019-06-25 19:28 zzfx 阅读(225) 评论(0) 推荐(0) 编辑
摘要: In this section, we will discuss some of the features that make React a superior choice for front-end developers. Have a look: Source: http://blog.emb 阅读全文
posted @ 2019-06-25 18:36 zzfx 阅读(511) 评论(0) 推荐(0) 编辑
摘要: If you are using React or learning React, you must have heard of the term “Virtual DOM”. Now what is a Virtual DOM, and why does React use it? Real DO 阅读全文
posted @ 2019-06-25 18:34 zzfx 阅读(292) 评论(0) 推荐(0) 编辑
摘要: Consider a DOM made of thousands of divs. Remember, we are modern web developers, our app is very SPA! We have lots of methods that handle events - cl 阅读全文
posted @ 2019-06-25 18:26 zzfx 阅读(343) 评论(0) 推荐(0) 编辑
摘要: redux是全局状态(数据)的管理机制,局部数据没有意义 阅读全文
posted @ 2019-06-25 16:42 zzfx 阅读(417) 评论(0) 推荐(0) 编辑
摘要: 布局描述的术语 阅读全文
posted @ 2019-06-24 22:57 zzfx 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 只有物有所值或物超所值的东西才值得投入时间、金钱、精力去获取。 阅读全文
posted @ 2019-06-19 19:34 zzfx 阅读(140) 评论(0) 推荐(0) 编辑
摘要: Flutter在iOS上的表现就是一坨屎; 用户体验差到了极点; 目前来说不值得投入大量精力去研究; 了解一下原理可以。 阅读全文
posted @ 2019-06-19 19:13 zzfx 阅读(2926) 评论(0) 推荐(0) 编辑
摘要: async/await 和 trycatch/throwable机制类似 阅读全文
posted @ 2019-06-19 15:50 zzfx 阅读(273) 评论(0) 推荐(0) 编辑
摘要: Q5. How would you differentiate JDK, JRE, JVM, and JIT?A5. There is no better way to get the big picture than a diagram. JDK, JRE, JVM, and JIT JDK, J 阅读全文
posted @ 2019-06-19 14:35 zzfx 阅读(239) 评论(0) 推荐(0) 编辑
摘要: Java JIT(just in time)即时编译器是sun公司采用了hotspot虚拟机取代其开发的classic vm之后引入的一项技术,目的在于提高java程序的性能,改变人们“java比C/C++慢很多”这一尴尬印象。 说起来是编译器,但此编译器与通常说的javac那个编译器不同,它其实是 阅读全文
posted @ 2019-06-19 14:06 zzfx 阅读(1877) 评论(0) 推荐(0) 编辑
摘要: 系统(进程、可执行文件)运行时,缺省要素(的查找路径) 环境变量是一个有名称的对象,包含可被其它程序使用的数据。简单的说,它是一个名称和数值对。环境变量的值可以是文件系统上所有执行程序的位置,默认的编辑器,系统本地化设置等。 要求系统运行一个程序而没有告诉它程序所在的完整路径时,系统除了在当前目录下 阅读全文
posted @ 2019-06-18 17:22 zzfx 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 使用async/await消除callback hell 通过Future回调中再返回Future的方式虽然能避免层层嵌套,但是还是有一层回调,有没有一种方式能够让我们可以像写同步代码那样来执行异步任务而不使用回调的方式?答案是肯定的,这就要使用async/await了,下面我们先直接看代码,然后再 阅读全文
posted @ 2019-06-18 15:22 zzfx 阅读(417) 评论(0) 推荐(0) 编辑
摘要: React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolat 阅读全文
posted @ 2019-06-18 11:27 zzfx 阅读(158) 评论(0) 推荐(0) 编辑
摘要: Getting started with react.js: basic concept of React component 1 What is React.js React, or React.js is an open source javascript framework from Face 阅读全文
posted @ 2019-06-18 11:07 zzfx 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Introduction about React component lifecycle. 1 Lifecycle A React component in browser can be any of the following three statuses: mounted, update and 阅读全文
posted @ 2019-06-14 19:35 zzfx 阅读(301) 评论(0) 推荐(0) 编辑
摘要: This is really different, React is view library; and Rxjs is reactive programming library for javascript. You can use Rxjs inside react view but in re 阅读全文
posted @ 2019-06-14 19:33 zzfx 阅读(382) 评论(0) 推荐(0) 编辑
摘要: 响应式编程是一种异步的、声名式的、面向数据流的编程范式。 异步:moand、observeable、handle; 声名式:用逻辑表述的形式组织代码;使用函数式编程范式。 数据流:将数据视作数据流的形式,并用pipeline的形式做处理。 rx是对响应式编程操作的标准化。 Each language 阅读全文
posted @ 2019-06-14 18:55 zzfx 阅读(318) 评论(0) 推荐(0) 编辑
摘要: js 基于哈希表、原型链、作用域、属性类型可配置的多范式编程语言 值类型、引用类型、直接赋值; 原型是以对象形式存在的类型信息。 ECMA-262把对象定义为:无序属性的集合,其属性可以包含基本值,对象或者函数。所以js中对象就是一组键值对。 https://www.cnblogs.com/star 阅读全文
posted @ 2019-06-14 17:20 zzfx 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 我相信你已经看过很多关于 JavaScript 的 this 的谈论了,既然你点进来了,不妨继续看下去,看是否能帮你加深对 this 的理解。 最近在看 《You Dont Know JS》 这本书,不得感叹,就算用了 JS 很多年的老前端来看这本书,我觉得还是会有不少的收获。 其中关于 this 阅读全文
posted @ 2019-06-14 16:29 zzfx 阅读(192) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 101 下一页