书栈网 · BookStack 本次搜索耗时 0.016 秒,为您找到 3178 个相关结果.
  • getLegacyAngularInjector

    getLegacyAngularInjector variable getLegacyAngularInjector variable getLegacyAngularInjector variable This API is provided as a preview for developers and may change based on ...
  • Summary

    Summary Summary Observables offer a flexible set of APIs for composing and transforming asynchronous streams. They provide a multitude of functions to create streams from many...
  • InputNumber数字输入框

    InputNumber数字输入框 何时使用 代码演示 API nz-input-numbercomponent 方法 InputNumber数字输入框 通过鼠标或键盘,输入范围内的数值。 何时使用 当需要获取标准数值时。 import { NzInputNumberModule } from 'ng-zorro-...
  • Testing HTTP Requests

    Testing HTTP Requests Testing HTTP Requests Services, by their nature, perform asynchronous tasks. When we make an HTTP request we do so in an asynchronous manner so as not to ...
  • transclude的细节

    18.6. transclude的细节 transclude 有两方面的东西,一个是使用 $compile 时传入的函数,另一个是定义指令的 compile 函数时接受的一个参数。虽然这里的一出一进本来是相互对应的,但是实际使用中,因为大部分时候不会手动调用 $compile ,所以,在“默认”情况下,指令接受的 transclude 又会是...
  • 使用JiT编译器

    使用JiT Compiler将翻译文件导入到应用程序中 使用JiT Compiler将翻译文件导入到应用程序中 JiT(Just-in-time)编译器在应用程序加载时动态编译应用程序。要做到这一点,我们将需要依靠3个提供者告诉JiT编译器如何翻译特定语言的模板文本: TRANSLATIONS 是包含翻译文件内容的字符串。 TRANSLATION...
  • 自定义管道

    自定义管道 自定义管道 Angular 2允许创建你自己的管道: import { Pipe , PipeTransform } from '@angular/core' ; const FILE_SIZE_UNITS = [ 'B' , 'KB' , 'MB' , 'GB' , 'TB' ,...
  • 参数定义

    9.2. 参数定义 在作路由定义时,可以匹配一个规则,规则中可以定义路径中的某些部分作为参数之用,然后使用 $routeParams 服务获取到指定参数。比如 /#/book/test 中, test 作为参数传入到 controller 中: < div ng - view >< /div> < script ...
  • Creating Other Things

    Creating Other Things Creating Other Things The CLI can scaffold other Angular entities such as services, pipes and directives using the generate command. ng generate [entity]...
  • 测试复杂的Action

    测试复杂的 Actions 条件 Action 异步 Action 测试复杂的 Actions 当我们想测试异步或条件Actions创建者时,事情变得有点棘手。我们的目标仍然是相同的:确保 operations 发出我们期望的Actions。 条件 Action 考虑以下条件action(即,根据当前状态触发的操作): import ...