Получить значения JSON в Http.get
Я пытался создать небольшой пример в Angular2. То, что я делаю, это когда я нажимаю кнопку, это делает доступ к публичному API и показывает кавычки, но я не могу, значение никогда не отображается, и я получил ошибку
Невозможно прочитать свойство "цитаты" из неопределенного в [{{quote.contents.quotes.quote}} в приложении @4:20]
Мой Component.ts
import {Component, OnInit, Injectable} from 'angular2/core';
import {Http, HTTP_PROVIDERS, URLSearchParams} from 'angular2/http';
import 'rxjs/add/operator/map';
@Component({
selector: 'app',
template: `<ul>
<li (click)='myAlert()'> Helow World</li>
</ul>
<div>
<spam>{{quote.contents.quotes.quote}}</spam>
</div>`,
providers: [HTTP_PROVIDERS]
})
export class App {
public quote: Object;
public logError: string;
constructor(private http: Http){
this.quote = {};
}
myAlert(){
this.http.get("http://quotes.rest/qod.json").map(res => { return res.json()})
.subscribe(
data => this.quote = data,
err => this.logError(err),
() => console.log('Random Quote Complete')
);
}
}
Мой boot.ts
import {bootstrap} from 'angular2/platform/browser'
import {App} from './component'
import {HTTP_PROVIDERS} from 'angular2/http';
bootstrap(App, [HTTP_PROVIDERS]).catch(err => console.error(err));
Index.html
<html>
<head>
<title>Angular 2 QuickStart</title>
<!-- 1. Load libraries -->
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="https://code.angularjs.org/2.0.0-beta.1/http.js"></script>
<!-- 2. Configure SystemJS -->
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('app/boot')
.then(null, console.error.bind(console));
</script>
</head>
<!-- 3. Display the application -->
<body>
<app>Loading...</app>
</body>
</html>
Как я могу получить значения из подписки на сервис и вставить в мой шаблон?
1 ответ
Решение
Когда шаблон загружен quote.contents
не определено Также я заметил, что quote.contents
содержит и массив. после этого я изменился myAlert()
метод для:
myAlert(){
this.http.get("http://quotes.rest/qod.json").map(res => { return res.json()})
.subscribe(
data => { this.quote = data.contents.quotes[0].quote; this.author = data.contents.quotes[0].author;},
err => this.logError(err),
() => console.log('Random Quote Complete')
);
}
И компонент для:
@Component({
selector: 'app',
template: `<ul>
<li (click)='myAlert()'> Helow World</li>
</ul>
<div>
<spam>{{quote}}</spam>
<br>
<spam>{{author}}</spam>
</div>`,
providers: [HTTP_PROVIDERS]
})
И сейчас работает.
Примечание: у меня не так много навыков Typescript
а также Angular2
возможно есть другой способ.