Как я могу обновить этот метод, который время от времени приносит новости?
Это мои трески:
export class HomePage {
api_url:string='http://despertadorlavalle.com.ar/wp-json/wp/v2/posts…';
posts:any;
constructor(public navCtrl: NavController,public http:Http) {
this.getNotices();
}
ionViewDidLoad(){
console.log('ionViewDidLoad HomePage');
}
getNotices(){
this.http.get(this.api_url)
.map(res => res.json()).subscribe(posts =>{
this.posts=posts;
})
}
}