日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

关于Angular @Injectable的几种测试情况

發(fā)布時間:2023/12/19 编程问答 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 关于Angular @Injectable的几种测试情况 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

我有一個服務(wù)實現(xiàn)類:

export class MyNewService {seed: number;text: 'NewService';constructor(){this.seed = Number((Math.random() * 100).toFixed(0));console.log('diablo constructor called: ' + this.seed);} }

在app.module.ts里providers區(qū)域的定義其作為 token MyService 的實現(xiàn) :

測試場景1

MyNewService 前面未加任何@Injectable的注解。

測試結(jié)果:

NullInjectorError: No provider for MyNewService!

測試場景2

MyNewService前面加上@Injectable的注解。

仍然一樣的錯誤:

測試場景3

@Injectable({ providedIn: 'root' })

這次沒有報錯了:


測試場景4

把useExisting改成useClass:

對應(yīng)的MyNewService實例化的代碼則在這里調(diào)用:

測試場景5

對于同一個injection token,使用useExisting提供多個provider:

測試發(fā)現(xiàn),后出現(xiàn)在providers數(shù)組里的provider定義生效:

而且只有后出現(xiàn)的provider的構(gòu)造函數(shù)會被調(diào)用。

測試場景6 加上useExisting, multi: true

很有意思,這一次,MyNewService和MyNewerService的構(gòu)造函數(shù)都觸發(fā)了:


這次parameter1變成一個數(shù)組了:

@Injectable({providedIn: 'root', }) export class WindowRef {readonly document: Document;

注解 @Injectable 的作用:

Determines which injectors will provide the injectable, by either associating it with an @NgModule or other InjectorType, or by specifying that this injectable should be provided in one of the following injectors:

  • ‘root’ : The application-level injector in most apps.
  • ‘platform’ : A special singleton platform injector shared by all applications on the page.
  • ‘a(chǎn)ny’ : Provides a unique instance in each lazy loaded module while all eagerly loaded modules share one instance.

Marking a class with @Injectable ensures that the compiler will generate the necessary metadata to create the class’s dependencies when the class is injected.

@Injectable 的含義是,當(dāng)被注解的 class 被注入時,編譯器會生成必要的元數(shù)據(jù),以創(chuàng)建類的依賴。

更多Jerry的原創(chuàng)文章,盡在:“汪子熙”:

總結(jié)

以上是生活随笔為你收集整理的关于Angular @Injectable的几种测试情况的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。