0

コンポーネントにサービスを注入すると、次のエラーが表示されます。

1 つ以上のプロバイダ "CategoriesComponent" が定義されていません: [?, [object Object], BrowserXhr, [object Object], [object Object], XHRBackend, [object Object]].

この問題を解決するのを手伝ってください。どうもありがとう

以下は私のコードです:

カテゴリ.サービス.ts

import { Injectable } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';


import { Category } from './index';
// import * as global from '../shared/global/globals';

@Injectable()
export class CategoryService {
    private _baseUrl: string = '/api/v1/category/list';

    constructor(private http: Http) {
        // this._baseUrl = global.BASE_URL;
    }

    getCategories(): Observable<Category[]>{
        return this.http.get(this._baseUrl)
            .map((res: Response) => {
                return res.json();
            })
            .catch(this.handleError);
    }

    private handleError(error: any) {
    var applicationError = error.headers.get('Application-Error');
    var serverError = error.json();
    var modelStateErrors: string = '';

    if (!serverError.type) {
      console.log(serverError);
      for (var key in serverError) {
        if (serverError[key])
          modelStateErrors += serverError[key] + '\n';
      }
    }

    modelStateErrors = modelStateErrors = '' ? null : modelStateErrors;

    return Observable.throw(applicationError || modelStateErrors || 'Server error');
  }
}

カテゴリ.コンポーネント.ts

import { Component, OnInit } from '@angular/core';
import { HTTP_PROVIDERS } from '@angular/http';
import { Category, CategoryService } from './index';

@Component({
    // moduleId: module.id,
    selector: 'categories',
    templateUrl: 'views/category/categories-component',
    providers: [CategoryService, HTTP_PROVIDERS]
})
export class CategoriesComponent implements OnInit {
    categories: Category[];

    isCollapsed = false;

    constructor(private categoryService: CategoryService) {}

    ngOnInit() {
        this.categoryService.getCategories()
            .subscribe((categories: Category[]) => {
                this.categories = categories;
            }, 
            error => {
                console.log(error);
            });
        // console.log('=======');
    }

    toggle(){
        this.isCollapsed = !this.isCollapsed;
    }
}

navbar.component.ts

import { Component } from '@angular/core';
import { ROUTER_DIRECTIVES } from '@angular/router';
import { CategoriesComponent } from '../../category/index';

@Component({
    // moduleId: module.id,
    selector: 'navbar',
    templateUrl: 'views/navbar/navbar',
    directives: [ROUTER_DIRECTIVES, CategoriesComponent]
})
export class NavbarComponent {

}
4

1 に答える 1