书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 3199 个相关结果.
  • javascript-closure-angular

    generators/javascript-closure-angular generators/javascript-closure-angular id: generator-opts-client-javascript-closure-angular title: Config Options for javascript-closure-a...
  • makeClassES5Compatible

    makeClassES5Compatible() function makeClassES5Compatible() function makeClassES5Compatible() function This API is provided as a preview for developers and may change based on ...
  • Migrating To TypeScript

    Migrating to TypeScript Migrating to TypeScript TypeScript is a superset of ES6 and, as its name suggests, uses a type system.This can have an enormous impact on developer tool...
  • 重要更新

    369 2020-08-10 《BUI 文档 1.6.x》
    重要更新 重要更新 原本 540规范,升级成750 规范, 切图的时候如果设计稿是750的, 不再需要转稿了. 修改UI控件的参数的所有回调的this指向控件本身, 原本的点击对象this 在 e.target 获取 一些无需传参的方法. 优化了gulpfile.js 针对es6的编译
  • Duplicate Object Literal Properties

    Duplicate Object Literal Properties Duplicate Object Literal Properties ECMAScript 5 strict mode introduced a check for duplicate object literal properties that would throw an ...
  • 14. Symbol

    14. Symbol Symbol 是一种新的数据类型,它的值是唯一的,不可变的。ES6 中提出 symbol 的目的是为了生成一个唯一的标识符,不过你访问不到这个标识符: var sym = Symbol ( "some optional description" ); console . log ( typeof sym )...
  • 顶层对象的属性

    顶层对象的属性 顶层对象的属性 顶层对象,在浏览器环境指的是window 对象,在 Node 指的是global 对象。ES5 之中,顶层对象的属性与全局变量是等价的。 window . a = 1 ; a // 1 a = 2 ; window . a // 2 上面代码中,顶层对象的属性赋值与全局变量的赋...
  • 使用 tsc

    使用tsc 使用tsc 到目前为止tsc 已用于编译单个文件。通常,程序会有多个文件进行编译。值得庆幸的是tsc 可以处理多个文件作为参数。 a.ts export const A = ( a ) => console . log ( a ); b.ts export const B = ( b ) ...
  • think.base

    think.base init(…args) __before() __after() filename() invoke(method, …data) think.base think.base 是基类,所有的类都会继承该类,该类提供了一些基本的方法。 使用 ES6 语法继承该类: export default class ...
  • TypeScript 1.6

    TypeScript 1.6 JSX 支持 新的 .tsx 文件扩展名和 as 运算符 使用 React 使用其他 JSX 框架 编译输出 交叉类型 (intersection types) 例子 本地类型声明 类表达式 继承表达式 abstract (抽象的) 类和方法 例子 泛型别名 更严格的对象字面量赋值检查 例子 ...