web-dev-qa-db-ja.com

Angular 4 and Ionic 3 HTTPのプロバイダーなし

Httpをインポートするサービスがあり、アプリで使用するとエラーがスローされます。 "Httpのプロバイダーがありません!g injectionErrorのエラー。アプリを遅延読み込みしています。また、プロバイダーはcli "ionic g provider ... "

complaint-service.ts

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

@Injectable()
export class ComplaintService {
    private complaints: {subject: string, description: string}[] = [];

    constructor(public http: Http) {
        this.http = http;
        this.complaints = null;
        console.log('Hello ComplaintService Provider');
    }

    addComplaints(complaint: {subject: string, description: string}) {
        this.complaints.Push(complaint);
    }

    getComplaints() {
        return this.complaints.slice();
    }

}

苦情フォーム.ts

import { Component } from '@angular/core';
import {Validators, FormBuilder, FormGroup } from '@angular/forms';
import { IonicPage, NavController, NavParams } from 'ionic-angular';
import {ComplaintService} from '../../providers/complaint-service';


@IonicPage()
@Component({
  selector: 'page-complaint-form',
  templateUrl: 'complaint-form.html',
  providers: [ComplaintService]
})
export class ComplaintForm {

}

助言がありますか?

24
abhiklpm

HttpModuleをモジュールに登録する必要があります(/app.module.ts):

import { HttpModule} from '@angular/http';

@NgModule({
  imports: [
    HttpModule
  ],
  declarations: [ AppComponent ],
  bootstrap:    [ AppComponent ]
})
export class AppModule {
}
67
devqon

HTTPもプロバイダーリストに追加します。 (AppModuleへ)

import { HTTP } from '@ionic-native/http';

そして

  providers: [
    ...,
    HTTP 
  ]

Angulat5 +での作業、Ionic 3+

HttpModuleは、ionic3およびAngular5の最新バージョンでは非推奨です。したがって、HttpModuleの代わりにHttpClientModuleを使用する必要があります。他のことは@devqonの答えと同じです。その後、サービスまたはコンポーネントファイルでHttpClientを使用できます。

詳細については、Angularの元のドキュメントを参照してください。

https://angular.io/guide/http

import {HttpClientModule} from "@angular/common/http";

@NgModule({
  imports: [
    HttpClientModule
 ],
 declarations: [ AppComponent ],
 bootstrap:    [ AppComponent ]
})
export class AppModule {
}
0
Darpan
import {HttpClientModule} from "@angular/common/http";

@NgModule({
  declarations: [
    ChatPage,
  ],
  imports: [
    IonicPageModule.forChild(ChatPage),
    HttpModule,
    HttpClientModule,// add HttpClientModule to import
    SocketIoModule.forRoot(config)
  ],

})

ionic cordova run browserで実行することを忘れないでください。cordovaプラグインを実行するプラットフォームが必要です。

0
Biswajit