书栈网 · BookStack 本次搜索耗时 0.029 秒,为您找到 3199 个相关结果.
  • TypeScript 1.6

    JSX support New .tsx file extension and as operator Using React Using other JSX framworks Output generation Intersection types Example Local type declarations Class expre...
  • TypeScript 1.6

    JSX support New .tsx file extension and as operator Using React Using other JSX framworks Output generation Intersection types Example Local type declarations Class express...
  • 教程

    快照测试 异步示例 计时器模拟 手动模拟 ES6 类模拟 绕过模块模拟 ECMAScript Modules 使用 webpack Using with puppeteer Using with MongoDB Using with DynamoDB DOM 操作 Watch Plugins 迁移到Jest 疑难解答 Jest的...
  • 7. 贴士与技巧

    462 2019-11-25 《MobX 3 中文文档》
    7.1. 常见陷阱与最佳实践 7.2. 定义数据存储 7.3. 编写异步 actions 7.4. 优化 React 组件 7.5. 开发工具 7.6. 使用 trace 进行调试 7.7. ES5 / ES6 / TypeScript 语法 7.8. 无状态组件和热加载
  • 简介

    简介 类的由来 constructor 方法 类的实例 取值函数(getter)和存值函数(setter) 属性表达式 Class 表达式 注意点 简介 类的由来 JavaScript 语言中,生成实例对象的传统方法是通过构造函数。下面是一个例子。 function Point ( x , y ) { this...
  • Guides

    Snapshot Testing An Async Example Timer Mocks Manual Mocks ES6 Class Mocks Bypassing module mocks Using with webpack Using with puppeteer Using with MongoDB Using with Dyn...
  • Module: Function

    Module: Function Module: Function For example, when you want to work with JavaScript code which looks like: ts import greeter from "super-greeter" ; greeter ( 2 ); gree...
  • 第五章:集合

    第五章:集合 第五章:集合 结构化的集合与数据访问对于任何JS程序来说都是一个关键组成部分。从这门语言的最开始到现在,数组和对象一直都是我们创建数据结构的主要机制。当然,许多更高级的数据结构作为用户方的库都曾建立在这些之上。 到了ES6,最有用(而且优化性能的!)的数据结构抽象中的一些已经作为这门语言的原生组件被加入了进来。 我们将通过检视 类型...
  • u 修饰符

    u 修饰符 u 修饰符 ES6 对正则表达式添加了u 修饰符,含义为“Unicode 模式”,用来正确处理大于\uFFFF 的 Unicode 字符。也就是说,会正确处理四个字节的 UTF-16 编码。 /^\uD83D/ u . test ( '\uD83D\uDC2A' ) // false /^ \uD83D /. test ( '\...
  • 内建类型

    内建类型 JavaScript 定义了七种内建类型: null undefined boolean number string object symbol — 在 ES6 中被加入的! 注意: 除了 object 所有这些类型都被称为“基本类型(primitives)”。 typeof 操作符可以检测给定值的类型,而且总是返回...