【发布时间】:2017-07-05 16:44:08
【问题描述】:
我正在使用 omdbapi.com API 制作一个简单的电影数据搜索引擎。我已经设置了服务来获取数据和组件来创建视图,但是当我尝试连接到 HTML 时出现错误:
找不到“object”类型的不同支持对象“[object Object]”。 NgFor 仅支持绑定到 Iterables,例如 Arrays。 错误:找不到“object”类型的不同支持对象“[object Object]”。 NgFor 只支持绑定到 Arrays 等 Iterables。
电影课
export class Movie {
constructor(
Title: string,
Year: string,
Rated: string,
Released: string,
Runtime: string,
Genre: string,
Director: string,
Writer: string,
Actors: string,
Plot: string,
Language: string,
Country: string,
Awards: string,
Poster: string,
Metascore: string,
imdbRating: string,
imdbVotes: string,
imdbID: string,
Type: string,
Response: string
) {}
}
这是我的组件:
import { Component, OnInit } from '@angular/core';
import { Http, Response } from '@angular/http';
import { Observable } from 'rxjs/Observable';
import { Subject } from 'rxjs/Subject';
//observable class extensions
import 'rxjs/add/observable/of';
import 'rxjs/add/operator/switchMap';
import 'rxjs/add/operator/map';
//observable operators
import 'rxjs/add/operator/catch';
import 'rxjs/add/operator/debounceTime';
import 'rxjs/add/operator/distinctUntilChanged';
import { MovieSearchService } from './movie-search.service';
import { Movie } from './movie';
@Component({
selector: 'movie-search',
templateUrl: './movie-search.component.html',
styleUrls: ['./movie-search.component.css'],
providers: [MovieSearchService]
})
export class MovieSearchComponent implements OnInit {
movies: Observable<Movie[]>;
private searchTerms = new Subject<string>();
constructor(
private movieSearchService: MovieSearchService,
private http: Http
) {}
search(term:string) {
return this.searchTerms.next(term);
}
ngOnInit(): void {
this.movies = this.searchTerms
.debounceTime(300) // wait 300ms after each keystroke before considering the term
.distinctUntilChanged() // ignore if next search term is same as previous
.switchMap(term => term // switch to new observable each time the term changes
// return the http search observable
? this.movieSearchService.search(term)
// or the observable of empty heroes if there was no search term
: Observable.of<Movie[]>([])
)
.catch(error => {
console.log("--------- Error -------");
console.log( error );
return Observable.of<Movie[]>([]);
})
}
}
这是服务
import { Injectable } from '@angular/core';
import { Http, Jsonp } from '@angular/http';
import { Observable} from 'rxjs/Observable';
import 'rxjs/add/operator/map';
import { Movie } from './movie';
@Injectable()
export class MovieSearchService {
constructor(
private http: Http,
private jsonp: Jsonp
) {}
search(term: string): Observable<Movie[]> {
return this.http
.get(`http://www.omdbapi.com/?s=${term}`)
.map(response => {
return response.json().each() as Movie[]
})
}
}
还有风景
<div class="col-xs-12">
<input #searchBox id="search-box" />
<button (click)="search(searchBox.value)">Search</button>
</div>
<ul *ngIf="movies">
<li *ngFor="let movie of movies">
{{ movie.title }}
</li>
</ul>
如何让视图显示每部电影的电影标题? 提前感谢您的宝贵时间。
【问题讨论】:
-
请发布从 API 返回的 JSON 结构示例
标签: json angular object jsonp observable