书栈网 · BookStack 本次搜索耗时 0.025 秒,为您找到 2325 个相关结果.
  • 代数效应(Algebraic Effects)

    2160 2018-09-06 《React 设计思想》
    代数效应(Algebraic Effects) 多层抽象需要共享琐碎数据时,一层层传递数据非常麻烦。如果能有一种方式可以在多层抽象中快捷地传递数据,同时又不需要牵涉到中间层级,那该有多好。React 中我们把它叫做“context”。 有时候数据依赖并不是严格按照抽象树自上而下进行。举个例子,在布局算法中,你需要在实现他们的位置之前了解子节点的大小。 ...
  • 18. New Array features

    957 2019-05-03 《Exploring ES6》
    18. New Array features 18.1 Overview 18.2 New static Array methods 18.2.1 Array.from(arrayLike, mapFunc?, thisArg?) 18.2.1.1 Mapping via Array.from() 18.2.1.2 from() in subclasse...
  • Modules

    Module Specifications and Examples Module Loading Order Module Specifications and Examples All code files can be roughly divided into Plugin Script and Module two kinds, this...
  • Modules

    Module Specifications and Examples Module Loading Order Module Specifications and Examples All code files can be roughly divided into Plugin Script and Module two kinds, this...
  • 15. String.prototype.{trimStart,trimEnd}

    15. String.prototype.{trimStart,trimEnd} 15.1. The string methods .trimStart() and .trimEnd() 15.2. Legacy string methods: .trimLeft() and .trimRight() 15.3. What characters coun...
  • 自定义控件

    704 2018-06-21 《Tabris 中文文档》
    自定义控件 自定义控件用JavaScript和原生平台支持的语言编写。它们使用原生Tabris.js客户端的接口,并被封装在Cordova插件中。本文将介绍JavaScript的实现部分。 用JavaScript定义自定义控件 自定义控件必须继承自Widget 。它能够与自定义控件的原生部分进行通信。 自定义控件类必须覆写_nativeType ...
  • ES5 技术设计

    912 2020-10-08 《JavaScript 20 年》
    ES5 技术设计 严格模式 Getter,Setter 和对象元操作 对象的完整性与安全性特性 活动对象(Activation Object)的移除 其他 ES5 特性 ES5 技术设计 尽管 ES3.1 最初的目标非常保守,ES5 仍包含多项技术创新。 严格模式 ES5 严格模式直接源于 Douglas Crockford 在 Ja...
  • Code Transformation

    Defaults Writing custom transformers 例子 TypeScript with type checking Transforming images to their path Jest runs the code in your project as JavaScript, but if you use some ...
  • Namespaces and Modules

    Namespaces and Modules Introduction Using Namespaces Using Modules Pitfalls of Namespaces and Modules /// <reference>-ing a module Needless Namespacing Trade-offs of Modules ...
  • 22. Exception handling

    22. Exception handling 22.1. Motivation: throwing and catching exceptions 22.2. throw 22.2.1. Options for creating error objects 22.3. try-catch-finally 22.3.1. The catch clause...