angular學習006在angular6.0.8使用ng generate service建立服務報錯
1、使用ng generate service建立服務
D:\angular\my-app\src\app\service>ng generate service test
CREATE src/app/service/test.service.spec.ts (362 bytes)
CREATE src/app/service/test.service.ts (133 bytes)
2、使用webtorm開啟直接報錯
test.service..ts
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class TestService {
constructor() { }
}
錯誤如下
Argument type {providedIn: "root"} is not assignable to parameter type {providedIn: Type<any> | "root" | null} & InjectableProvider less... (Ctrl+F1)
Checks TypeScript called function parameters , return values , assigned expressions to be of correct type.
3、解決辦法(還不清楚原來)
刪除@Injectable小括號中的內容
import { Injectable } from '@angular/core';
@Injectable()
export class TestService {
constructor() { }
}
相關文章
- Angular6學習筆記8: 服務(Service)(1)Angular筆記
- 使用angular建立一個serviceAngular
- Angular 8 學習 (五 服務)Angular
- angular6自定義服務serviceAngular
- angular中的$http服務(service)解析AngularHTTP
- angular的uiRouter服務學習(4)AngularUI
- angular的uiRouter服務學習(3)AngularUI
- angular的uiRouter服務學習(1)AngularUI
- angular的uiRouter服務學習(2)AngularUI
- 如何使用FastReport.Service.dll建立Web服務ASTWeb
- 在docker中啟動服務報錯:New main PID 558 does not belong to serviceDockerAI
- 使用 ng-packagr 打包 AngularAngular
- angular學習筆記(十五)-module裡的'服務'Angular筆記
- angular學習筆記(二十九)-$q服務Angular筆記
- angular學習筆記(二)-建立angular模組Angular筆記
- angular的uiRouter服務學習(5) --- $state.includes()方法AngularUI
- 【應用服務 App Service】App Service使用Git部署時,遇見500錯誤APPGit
- angular學習筆記(四)- input元素的ng-model屬性Angular筆記
- 如何在 Laravel 5.1 中建立服務 Service ProviderLaravelIDE
- Android Service 服務(一)—— ServiceAndroid
- 【Azure微服務 Service Fabric 】使用az命令建立Service Fabric叢集微服務
- .NET 6學習筆記(2)——通過Worker Service建立Windows Service筆記Windows
- S/4HANA服務訂單Service Order的批量建立
- 銀河麒麟系統如何建立rc-local.service服務?
- SAP Spartacus 事件服務 Event Service 使用介紹事件
- 使用.NET Core建立Windows服務Windows
- Angular ng常用命令Angular
- angular service/directiveAngular
- 前端學習-flutter學習-006-包管理前端Flutter
- Angular2 http服務AngularHTTP
- 服務網格 Service Mesh
- 在庫中使用schematics——ng add與ng update
- [MDP.NetCore] 使用AzureAD+服務主體,快速建立兩個服務之間的Service身分認證NetCore
- 為什麼要使用服務網格Service Mesh?
- 使用Go語言建立WebSocket服務GoWeb
- 使用 Go 語言建立 WebSocket 服務GoWeb
- 關於使用Topshelf建立服務
- 如何建立 Angular 庫並在 Angular 應用裡呼叫Angular