书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 3184 个相关结果.
  • 错误

    错误 过早使用变量 错误 JavaScript不仅拥有不同的错误 子类型(TypeError ,ReferenceError ,SyntaxError 等等),而且和其他在运行时期间发生的错误相比,它的文法还定义了在编译时被强制执行的特定错误。 尤其是,早就有许多明确的情况应当被作为“早期错误”(编译期间)被捕获和报告。任何直接的语法错误都是一个...
  • Plugins

    Plugins External Packages Vue Plugins ES6 plugins Inject in \$root & context Client or server side only Name conventional plugin Object syntax Using process flags Plugi...
  • 重要更新

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

    性能工具 报告: JS 工具: 预算: 参考文献: 查阅表格: 性能工具 报告: GTmetrix sitespeed.io Speed Curve [$] Web Page Test JS 工具: imagemin ImageOptim-CLI 预算: performancebudget.io 参...
  • Trailing commas in function parameter and argument lists

    Trailing commas in function parameter and argument lists Example Trailing commas in function parameter and argument lists Trailing comma in function parameter and argument lis...
  • 8. 对象超类

    8. 对象超类 ES6 允许在对象中使用 super 方法: var parent = { foo () { console . log ( "Hello from the Parent" ); } } var child = { foo () { super ....
  • 模板字面量

    模板字面量 插值表达式 表达式作用域 标签型模板字面量 原始字符串 模板字面量 在这一节的最开始,我将不得不呼唤这个ES6特性的极其……误导人的名称,这要看在你的经验中 模板(template) 一词的含义是什么。 许多开发者认为模板是一段可复用的,可重绘的文本,就像大多数模板引擎(Mustache,Handlebars,等等)提供的能力那...
  • 6. Octal and Binary Literals

    6. Octal and Binary Literals ES6 has new support for octal and binary literals.Prependending a number with 0o or 0O would convert it into octal value. Have a look at the follow...
  • 顶层对象的属性

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

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