书栈网 · BookStack 本次搜索耗时 0.055 秒,为您找到 233853 个相关结果.
  • 类 单一职责原则 (SRP) 开/闭原则 (OCP) 利斯科夫替代原则 (LSP) 接口隔离原则 (ISP) 依赖反转原则 (DIP) 使用 ES6 的 classes 而不是 ES5 的 Function 使用方法链 优先使用组合模式而非继承 类 单一职责原则 (SRP) 如《代码整洁之道》一书中所述,“修改一个类的理由不应...
  • Views

    Views Accessing View Variables Auto-Escaping Layouts & Elements Output Handlers Views As one of the three pillars of the Model-View-Controller design pattern, the View cla...
  • Lexical this

    Lexical this Lexical this Normal functions abide by the 4 rules we just covered. But ES6 introduces a special kind of function that does not use these rules: arrow-function. ...
  • To 运动

    562 2019-12-24 《Omim v0.2.2 文档》
    To 在 Omi 中使用 API Props Demo To 使用 m-to 运动一切。 在 Omi 中使用 <m-to from = {{ number : 1 }} to = {{ number : 100 }} duration = {600} easing = 'bounc...
  • Istio Standard Metrics

    Istio Standard Metrics Metrics Labels Istio Standard Metrics The following are the standard service level metrics exported by Istio. The telemetry component is implemented a...
  • 命令行脚本

    命令行脚本 基本使用方法 命令行脚本 Testing Is Documentation tests/Console/CommandTest.php QueryPHP 内置控制台命名,底层采用 Symfony/console 开发,用法与 Symfony 一致,对基础命令进行了简单的封装。 几个简单的封装来自 Laravel ,是对 Symf...
  • 9. 构造函数

    构造器 9.1 总是使用 class 。避免直接操作 prototype 。 为什么? 因为 class 语法更为简洁更易读。 ```javascript// badfunction Queue(contents = []) { this._queue = […contents];}Queue.prototype.pop =...
  • this

    this this几种不停的使用场景 this this 要在执行时才能确认值,定义时无法确认值 var a = { name : 'A' , fn : function (){ console . log ( this . name ); } } a . fn () //this ==...
  • Form validation

    585 2019-04-26 《Dojo v5.0 Tutorials》
    Form validation Overview Prerequisites Create a place to store form errors Tie validation to form inputs Extending TextInput Making use of the blur event Validating on submit...
  • 快速上手:制作第一个 2D 游戏

    快速上手:制作第一个 2D 游戏 搭建环境 下载编辑器 安装引擎 创建工程 创建主角 创建第一个脚本 制作地图 预制体 保存场景 完善角色 让角色动起来 监听输入 移动角色 制作动画 播放动画 游戏管理器(GameManager) 相机和卷轴 菜单制作 游戏状态 绑定按钮事件 监听跳跃结束 层级 更多功能 总结 ...