Questions tagged «angular2-http»



1
在Angular中上传文件?
我知道这是一个非常普遍的问题,但是我无法在Angular 2中上传文件。 1)http://valor-software.com/ng2-file-upload/和 2)http://ng2-uploader.com/home ...但是失败了。有没有人在Angular中上传文件?您使用什么方法?怎么做?如果提供任何示例代码或演示链接,将不胜感激。

3
Angular2:如何在渲染组件之前加载数据?
我正在尝试在呈现组件之前从我的API加载事件。当前,我正在使用从组件的ngOnInit函数调用的API服务。 我的EventRegister组件: import {Component, OnInit, ElementRef} from "angular2/core"; import {ApiService} from "../../services/api.service"; import {EventModel} from '../../models/EventModel'; import {Router, ROUTER_DIRECTIVES, ROUTER_PROVIDERS, RouteConfig, RouteParams, RouterLink} from 'angular2/router'; import {FORM_PROVIDERS, FORM_DIRECTIVES, Control} from 'angular2/common'; @Component({ selector: "register", templateUrl: "/events/register" // provider array is added in parent component }) export class EventRegister implements OnInit …

3
Angular 2 http.post()未发送请求
当我发出发布请求时,Angular 2 http没有发送此请求 this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()) http帖子不会发送到服务器,但是如果我发出这样的请求 this.http.post(this.adminUsersControllerRoute, JSON.stringify(user), this.getRequestOptions()).subscribe(r=>{}); 这是故意的,如果有人可以解释我为什么?还是一个错误?

7
Angular 2-路由-CanActivate与Observable一起工作
我有一个实现CanActivate的AuthGuard(用于路由)。 canActivate() { return this.loginService.isLoggedIn(); } 我的问题是,CanActivate-result取决于http-get-result- LoginService返回一个Observable。 isLoggedIn():Observable<boolean> { return this.http.get(ApiResources.LOGON).map(response => response.ok); } 我如何将它们组合在一起-使CanActivate依赖于后端状态? ###### 编辑:请注意,这个问题是从2016年开始的-角/路由器的非常早期阶段已被使用。 ######
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.