书栈网 · BookStack 本次搜索耗时 0.043 秒,为您找到 578 个相关结果.
  • 时间操作符

    时间操作符 interval timer delay 业务场景 sampleTime 业务场景 debounceTime 业务场景 throttleTime buffer 业务场景 在 RxJS 中建模 时间操作符 这可不是一个简单的话题。其中涉及了应用程序中的诸多领域,你可能想要同步 API 的响应,或者你想要处理其它类型的...
  • 看守器

    看守器 授权看守器 基于角色的认证 反射器 看守器 看守器是一个使用 @Guard () 装饰器的类。 看守器应该使用 CanActivate 接口。 看守器有一个单独的责任。它们确定请求是否应该由路由处理程序处理。到目前为止, 访问限制逻辑大多在中间件内。这样很好, 因为诸如 token 验证或将req对象附加属性与特定路由没有强关...
  • Introduction

    1357 2020-06-13 《Nest.js v7.0 Document》
    Introduction Philosophy Installation Introduction Nest (NestJS) is a framework for building efficient, scalable Node.js server-side applications. It uses progressive JavaScr...
  • 展望 2017

    展望2017 展望2017 Web Assembly 有望达到一个新的高度。 有望在 <script> </script> 中使用 import 进行模块懒加载。详情见这里 JavaScript 同构解决方案持续增长,致敬服务器端输出前端内容的时代(即:页面直出到浏览器)。参见 NextJS 响应式编程继续茁壮成长。(参见 MobX ...
  • let

    let signature: let(function): Observable Let me have the whole observable. Examples Example 1: Reusing error handling logic with let Example 2: Applying map with let Example 3...
  • Select选择器

    Select选择器 何时使用 代码演示 API 单独引入此组件 nz-selectcomponent nz-optioncomponent nz-option-groupcomponent 方法 nz-selectcomponent Select选择器 下拉选择器。 何时使用 弹出一个下拉菜单给用户选择操作,用于代替原生的选...
  • Guards

    Guards Authorization guard Execution context Role-based authentication Binding guards Reflection Putting it all together Guards A guard is a class annotated with the @Inj...
  • Upload上传

    Upload上传 何时使用 单独引入此组件 代码演示 API nz-uploadcomponent nzChange nzCustomRequest Upload上传 文件选择上传和拖拽上传控件。 何时使用 上传是将信息(网页、文字、图片、视频等)通过网页或者上传工具发布到远程服务器上的过程。 当需要上传一个或一些文件时。 当...
  • Hot Module Replacement

    Hot Module Replacement Inside your Reducer Inside your Epic Hot Module Replacement 替换正在运行的 Epics 为新的版本可能会引起潜在的奇怪 bugs,因为 Epics 可能会维护一些内部的状态或者依赖一些外部的瞬时状态或者副作用。 想想如何去抖动跟踪,或者取消...
  • 数学操作符

    数学操作符 max min sum average 数学操作符 max let stream$ = Rx . Observable . of ( 5 , 4 , 7 ,- 1 ) . max (); 发出的值是7 。这个操作符的功能显而易见,只提供一个最大值。还有不同的方式来调用它,可以传入一个 comparer 函数:...