È necessario annullare l'iscrizione alle chiamate http Angular 2 per evitare perdite di memoria? fetchFilm(index) { var sub = this._http.get(`http://example.com`) .map(result => result.json()) .map(json => { dispatch(this.receiveFilm(json)); }) .subscribe(e=>sub.unsubscribe()); ...
So che questa è una domanda molto generale, ma non riesco a caricare un file in Angular 2. Ho provato 1) http://valor-software.com/ng2-file-upload/ e 2) http://ng2-uploader.com/home ... ma fallito. Qualcuno ha caricato un file in angolare? Quale metodo hai usato? Come si fa? Se viene fornito un codice di esempio o …
Sto cercando di caricare un evento dalla mia API prima che il componente venga visualizzato. Attualmente sto usando il mio servizio API che chiamo dalla funzione ngOnInit del componente. Il mio EventRegistercomponente: import {Component, OnInit, ElementRef} from "angular2/core"; import {ApiService} from "../../services/api.service"; import {EventModel} from '../../models/EventModel'; import {Router, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, …
Quando faccio una richiesta post, l'angular 2 http non sta inviando questa richiesta this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()) il post http non viene inviato al server ma se faccio la richiesta in questo modo this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()).subscribe(r=>{}); È previsto e se lo è qualcuno può spiegarmi perché? O è un bug?
Ho un AuthGuard (utilizzato per il routing) che implementa CanActivate . canActivate() { return this.loginService.isLoggedIn(); } Il mio problema è che il risultato di CanActivate dipende da un risultato http-get - LoginService restituisce un Observable . isLoggedIn():Observable<boolean> { return this.http.get(ApiResources.LOGON).map(response => response.ok); } Come posso riunirli - fare in modo …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.