2015-07-14 19:53:04 -05:00
|
|
|
library examples.src.jsonp.jsonp_comp;
|
|
|
|
|
|
|
|
import "package:angular2/angular2.dart" show Component, View, NgFor;
|
2015-07-28 13:10:25 -07:00
|
|
|
import "package:http/http.dart" show Jsonp;
|
2015-07-14 19:53:04 -05:00
|
|
|
import "package:angular2/src/facade/async.dart" show ObservableWrapper;
|
|
|
|
|
|
|
|
@Component(selector: "jsonp-app")
|
2015-08-04 12:05:30 -07:00
|
|
|
@View(
|
|
|
|
directives: const [NgFor],
|
|
|
|
template: '''
|
2015-07-14 19:53:04 -05:00
|
|
|
<h1>people</h1>
|
|
|
|
<ul class="people">
|
|
|
|
<li *ng-for="#person of people">
|
|
|
|
hello, {{person[\'name\']}}
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
''')
|
|
|
|
class JsonpCmp {
|
|
|
|
Object people;
|
|
|
|
JsonpCmp(Jsonp jsonp) {
|
|
|
|
ObservableWrapper.subscribe(
|
|
|
|
jsonp.get("./people.json?callback=JSONP_CALLBACK"),
|
|
|
|
(res) => this.people = res.json().toList());
|
|
|
|
}
|
|
|
|
}
|