gpt4 book ai didi

Angular 2 "No provider for String!"

转载 作者:行者123 更新时间:2023-12-02 13:42:04 26 4
gpt4 key购买 nike

我正在尝试在 Angular 2 中创建通用数据服务,但遇到了一个奇怪的错误。本质上,我正在创建一个 HTTP 服务,其方法接受部分 api url,以便我可以将它用于多种情况。例如,我想传递“projects/”并将其与“api/”连接以获取“api/projects/”,然后我可以在 http 调用中使用它。

我当前的 dataService.ts:

import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import 'rxjs/add/operator/map'
import { Observable } from 'rxjs/Observable';
import { Configuration } from '../app.constants';

@Injectable()
export class DataService {

private actionUrl: string;
private headers: Headers;

constructor(private _http: Http, private _configuration: Configuration, public action: string) {

this.actionUrl = _configuration.ApiUrl

this.headers = new Headers();
this.headers.append('Content-Type', 'application/json');
this.headers.append('Accept', 'application/json');
}

public GetAll (action: string): Observable<any> {
return this._http.get(this.actionUrl + action).map((response: Response) => <any>response.json());
}

public GetSingle (action: string, id: number): Observable<Response> {
return this._http.get(this.actionUrl + action + id).map(res => res.json());
}

public Add (action: string, itemToAdd: any): Observable<Response> {
var toAdd = JSON.stringify(itemToAdd);

return this._http.post(this.actionUrl + action, toAdd, { headers: this.headers }).map(res => res.json());
}

public Update (action: string, id: number, itemToUpdate: any): Observable<Response> {
return this._http
.put(this.actionUrl + id, JSON.stringify(itemToUpdate), { headers: this.headers })
.map(res => res.json());
}

public Delete (action: string, id: number): Observable<Response> {
return this._http.delete(this.actionUrl + id);
}
}

我尝试使用“projects”作为参数调用 GetAll 的组件:

import { Component, OnInit } from '@angular/core';
import { DataService } from '../services/dataService';

@Component({
selector: 'project-detail',
templateUrl: 'app/project/project-detail.component.html'
})
export class ProjectDetailComponent implements OnInit{
projects: Object[];

constructor(private _dataService: DataService) {}

getProjects(): void {
this._dataService.GetAll('projects').subscribe(projects => this.projects = projects);
}
ngOnInit(): void {
this.getProjects();
}
}

我确实在我的 app.module.ts 中添加了该服务作为提供者。另一件值得注意的事情是,我在这里显示的组件是名为 HomeComponent 的组件的子组件,该组件位于 AppComponent 中。

这就是 HomeComponent 的样子:

import { Component, OnInit } from '@angular/core';
import { ProjectDetailComponent } from '../project/project-detail.component';


@Component({
selector: 'home',
templateUrl: '<project-detail></project-detail>'
})

export class HomeComponent {}

错误:

EXCEPTION: Uncaught (in promise): Error: Error in      app/home/home.component.html:2:0 caused by: No provider for String!

我知道它提示我传递给 GetCall 的字符串,但我只是不知道为什么。

如有任何帮助,我们将不胜感激!

最佳答案

你不能只是注入(inject)任意的东西。您尝试注入(inject)的任何内容都需要配置为可注入(inject)。在大多数情况下,这意味着只需将类添加到 providers 列表中即可。对于字符串来说,事情就没那么简单了。我们需要做一些事情。

  1. 首先我们需要创建一个 token 1
  2. 然后使用该 token 配置要注入(inject)的字符串。
  3. 然后使用相同的 token ,@Inject 将其注入(inject)目标。
<小时/>
import { OpaqueToken } from '@angular/core';

// 1. Create token
export const ACTION = new OpaqueToken('app.action');

// 2. Configure the `providers` (Maybe in the AppModule)
providers: [
{ provide: ACTION, useValue: 'the value you want'
]

import { Inject } from '@angular/core';

export class DataService {
// 3. Injection target
constructor(@Inject(ACTION) action: string) {}
}
<小时/>

1 - 请参阅 Dependency Injection Tokens

<小时/>

更新

现在,在 Angular 4 中,我们应该使用 InjectionToken 而不是 OpaqueToken

关于 Angular 2 "No provider for String!",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39628768/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com