Angular 4 Error: the 'includes' property is missing from the type '() => any'

I am getting error when using angular 4 and observable.

/Users//backend/src/app/app.component.ts(15,55): Type '() => any' is not assigned to type 'State []'. /Users//backend/src/app/app.component.ts(15,55): Type '() => any' is not assigned to type 'State []'. The 'includes' property is missing in the type '() => any'.

What am I doing wrong

My model

export class State {
  id: number;
  state: string;
  code: string;
}

My service

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

import {environment} from '../../../environments/environment';

@Injectable()

export class StateService {
  private baseUrl: string = environment.baseUrl;

  constructor( private http: Http) {}

  /**
   * Get all States
   */
  GetStates() {
   return this.http.get(this.baseUrl + 'v1/states')
      .map((res: Response) => res.json);
     // .do( data => console.log(data));
  }
}

My component

import { Component, OnInit } from '@angular/core';
import {StateService} from './shared/services/state.service';
import {State} from './shared/models/state';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styles: []
})
export class AppComponent implements OnInit {
   states: State[] ;
  constructor(private stateService: StateService) {}

  ngOnInit() {
    this.stateService.GetStates().subscribe(states => this.states = states );
  }
}

App.module

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { FormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import 'rxjs/add/operator/map';

import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { StateService } from './shared/services/state.service';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule,
    HttpModule,
    AppRoutingModule
  ],
  providers: [
    StateService
  ],
  bootstrap: [AppComponent]
})
export class AppModule { }
+4
source share
2 answers

There are two problems.

First of all, you are not calling the json response, you are just referring to this method. You need to change res.jsonto res.json():

.map((res: Response) => res.json());

-, . :

this.stateService.GetStates().subscribe((states: State[]) => this.states = states);

any, , , , typescript , .

+5

res.json() . : http- Observable...

import { Injectable, OnInit } from '@angular/core';
import { HttpClient, HttpErrorResponse } from "@angular/common/http";
import { Dashboard } from "./app.component";
import { HttpHeaders } from "@angular/common/http";
import { Observable } from "rxjs/Observable";
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/map';



@Injectable()
export class HttpServiceService {

  public dashboards;

  constructor(private http: HttpClient) {}

  public handleError(error: any): Promise<any> {
    console.error('An error occurred', error); // for demo purposes only
    return Promise.reject(error.message || error);
  }


  getDashboard() : any {

    let results;
    const headers = new HttpHeaders()
      .set('Access-Control-Allow-Origin','*')
      .set('Content-Type', 'application/json');

    return this.http.get('http://localhost:8080/dashboards',
      {headers,responseType: "json"}).catch(this.handleError);
  }
}

... Observable AppComponent:

constructor(private http:HttpServiceService) {    
  this.http.getDashboard().subscribe(results => this.dashboardList = results);
}
+1

Source: https://habr.com/ru/post/1675104/


All Articles