Http.Get()总是在角度2中返回undefined

时间:2017-04-17 17:56:04

标签: angular angular2-services angular-http angular2-observables

按照教程,教师正在使用spotify api构建spotify音乐搜索。按照教练所做的每一步,但问题是我的数据永远不会回来,我得到了未定义,没有任何东西出现在屏幕上。但是,如果我直接在浏览器中点击api,则会显示json数据,但不会显示在我的应用程序中。

其实我看过很多这样的问题,但没有一个能解决我的问题。我认为它可能是一个与网络相关的问题,但是当我设置断点时,我可以在响应中看到结果但是没有任何内容被加载到视图中,未定义的内容被加载到控制台中

**search.component.html**
<h1>Need Music?</h1>
<p class="lead">
  Use the ngSpotify app to browse new releases of your favorite songs. See what your favorite artistes are up to.
</p>
<form>
  <div class="form-group">
    <input type="text" name="searchStr" [(ngModel)]="searchStr" (keyup.enter)="searchMusic()" class="form-control" placeholder="Search music here..."/>
  </div>
</form>

**search.component.ts**
import { Component, OnInit } from '@angular/core';
import { SpotifyService } from '../../Services/spotify.service';  
@Component({
  selector: 'app-search',
  templateUrl: './search.component.html',
  styleUrls: ['./search.component.css']
})
export class SearchComponent implements OnInit {

  constructor(private _spotifyservice: SpotifyService) { }

  searchStr: string;
  searchResult;

  searchMusic() {
    return this._spotifyservice.searchMusic(this.searchStr)
      .subscribe(data => {
        console.log(data);
        this.searchResult = data;
       },
        error => {
          console.log(error)
        })
      }    

  ngOnInit() {
  }

}

**spotify.service.ts**
import { Injectable } from '@angular/core';
import { Http, Response, Headers } from '@angular/http';
import 'rxjs/add/operator/map';
import 'rxjs/add/operator/catch';

import { Observable } from 'rxjs/Rx'


@Injectable()
export class SpotifyService {
  private searchUrl: string;

  constructor(private _http: Http) { }

  searchMusic(str: string, type = 'artist') {
    this.searchUrl = `http://api.spotify.com/v1/search?query=${str}&offset=0&limit=20&type=${type}&market=US`

    return this._http.get(this.searchUrl)
      .map((res) => { res.json() })
      .catch(this.handleError);

  }

  handleError(error: Response) {
    return Observable.throw(error || 'server error');
  }
}

2 个答案:

答案 0 :(得分:8)

因为你是这样映射的:

.map((res) => { res.json() })

您需要使用return

.map((res) => { return res.json() })

或仅使用:

.map(res => res.json())

DEMO

答案 1 :(得分:0)

你的[(ngModel)]在这种情况下不起作用所以你需要使用ElementRef来引用输入文本框

<input type="text" name="searchStr" #input (keyup.enter)="searchMusic(input.value)" class="form-control" placeholder="Search music here..."/>

将您的方法修改为

searchMusic(searchStr:string) {
    return this._spotifyservice.searchMusic(searchStr)
      .subscribe(data => {
        console.log(data);
        this.searchResult = data;
       },
        error => {
          console.log(error)
        })
      }   

在你的组件中声明一个元素ref为

@ViewChild('input') input: ElementRef;