我一直在玩Angular 2 Quickstart。如何在Angular 2中使用/导入http模块?
我查看了Angular 2 Todo's .js,但它没有使用http模块。
我已将"ngHttp": "angular/http",
添加到package.json中的dependencies
,因为我听说Angular 2有点模块化
答案 0 :(得分:49)
上次更新时间:2016年5月11日
Angular版本:2.0.0-rc.2
打字稿版本:1.8.10
如何将Http模块与Observable一起使用的简单示例:
import {bootstrap} from '@angular2/platform-browser-dynamic';
import {Component, enableProdMode, Injectable, OnInit} from '@angular/core';
import {Http, Headers, HTTP_PROVIDERS, URLSearchParams} from '@angular/http';
import 'rxjs/add/operator/map';
const API_KEY = '6c759d320ea37acf99ec363f678f73c0:14:74192489';
@Injectable()
class ArticleApi {
constructor(private http: Http) {}
seachArticle(query) {
const endpoint = 'http://api.nytimes.com/svc/search/v2/articlesearch.json';
const searchParams = new URLSearchParams()
searchParams.set('api-key', API_KEY);
searchParams.set('q', query);
return this.http
.get(endpoint, {search: searchParams})
.map(res => res.json().response.docs);
}
postExample(someData) {
const endpoint = 'https://your-endpoint';
const headers = new Headers({'Content-Type': 'application/json'});
return this.http
.post(endpoint, JSON.stringify(someData), { headers: headers })
.map(res => res.json());
}
}
@Component({
selector: 'app',
template: `<ul>
<li *ngFor="let article of articles | async"> {{article.headline.main}} </li>
</ul>`,
providers: [HTTP_PROVIDERS, ArticleApi],
})
class App implements OnInit {
constructor(private articleApi: ArticleApi) { }
ngOnInit() {
this.articles = this.articleApi.seachArticle('obama');
}
}
enableProdMode();
bootstrap(App)
.catch(err => console.error(err));
&#13;
答案 1 :(得分:25)
Zone
,您可以使用任何现有的机制来获取数据。这包括XMLHttpRequest
,fetch()
和任何其他第三方库。 XHR
中的compiler
是私有的,我们可以随时更改API,因此不应使用。答案 2 :(得分:19)
在版本37中,您需要这样做:
///<reference path="typings/angular2/http.d.ts"/>
import {Http} from "angular2/http";
运行此tsd命令:
tsd install angular2/http
答案 3 :(得分:8)
在Alpha 42中大致相同,但可以注意到Headers
和HTTP_PROVIDERS
也来自angular2/http
。
import {Http, Headers, HTTP_PROVIDERS} from 'angular2/http';
export class App {
constructor(public http: Http) { }
getThing() {
this.http.get('http://example.com')
.map(res => res.text())
.subscribe(
data => this.thing = data,
err => this.logError(err),
() => console.log('Complete')
);
}
}
有关此内容的更多信息以及如何使用在此处返回的observable: https://auth0.com/blog/2015/10/15/angular-2-series-part-3-using-http/
:)
答案 4 :(得分:6)
import {Injectable} from 'angular2/core';
import {Http, HTTP_PROVIDERS} from 'angular2/http';
@Injectable()
export class GroupSelfService {
items:Array<any>;
constructor(http:Http){
http.get('http://127.0.0.1:8080/src/data/names.json')
.subscribe(res => {
this.items = res;
console.log('results found');
})
}
}
404的结果:
检测到文件更改
检测到文件更改
GET / src / angular2 / http 404 0.124 ms - 30
两件奇怪的事情:
1. / src / angular2 / http - 不是可以找到http的路径,而不是我在代码中提供的路径。
2. core.js位于node_modules / angular2文件夹中的http.js旁边,找到了。
那有多奇怪?
<强>更新强>
Mea culpa:没有一个例子提到你需要在你的html中引用http.js,比如
<script src="../node_modules/angular2/bundles/http.dev.js"></script>
......然后它奏效了。
但是对于错误消息中的路径,我仍然没有解释。
答案 5 :(得分:6)
除了下面给出的所有答案,如果我掩盖一些额外的分数这里是Http
如何使用/导入所有内容......
首先从名称清楚我们必须在index.html中导入http文件,如此
<script src="node_modules/angular2/bundles/http.dev.js"></script>
或者您可以通过CDN from here
更新此内容
然后下一步我们必须从angular提供的包中导入Http
和HTTP_PROVIDERS
。
但是,在bootstrap文件中提供HTTP_PROVIDERS是一个好习惯,因为通过这种方式,它在全局级别提供并可用于整个项目,如下所示。
bootstrap(App, [
HTTP_PROVIDERS, some_more_dependency's
]);
和进口来自....
import {http} from 'angular2/http';
使用Http
使用Rest API或json
现在连同http,我们还提供了更多的angular2 / http选项,例如Headers,Request,Requestoptions等。 这主要是在使用Rest API或临时Json数据时使用的。首先,我们必须导入以下所有内容:
import {Http, Response, RequestOptions, Headers, Request, RequestMethod} from 'angular2/http';
有时我们需要提供Headers,同时使用API来发送access_token以及使用这种方式完成的更多事情:
this.headers = new Headers();
this.headers.append("Content-Type", 'application/json');
this.headers.append("Authorization", 'Bearer ' + localStorage.getItem('id_token'));
现在来到RequestMethods:基本上我们使用GET,POST但我们还有更多选项refer here...
我们可以使用RequestMethod.method_name
现在有一些API的选项,我现在通过一些重要的方法发布了一个POST请求帮助示例:
PostRequest(url,data) {
this.headers = new Headers();
this.headers.append("Content-Type", 'application/json');
this.headers.append("Authorization", 'Bearer ' + localStorage.getItem('id_token'))
this.requestoptions = new RequestOptions({
method: RequestMethod.Post,
url: url,
headers: this.headers,
body: JSON.stringify(data)
})
return this.http.request(new Request(this.requestoptions))
.map((res: Response) => {
if (res) {
return [{ status: res.status, json: res.json() }]
}
});
}
答案 6 :(得分:4)
我认为现在需要(alpha.35和36):
GridView
请记住在html中添加(因为现在是一个单独的文件)引用:https://code.angularjs.org/2.0.0-alpha.36/http.dev.js
答案 7 :(得分:2)
关注一些答案,以下是使用http
模块的完整工作示例
index.html
<html>
<head>
<title>Angular 2 QuickStart</title>
<script src="../node_modules/es6-shim/es6-shim.js"></script>
<script src="../node_modules/systemjs/dist/system.src.js"></script>
<script src="../node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="../node_modules/angular2/bundles/http.dev.js"></script>
<script>
System.config({
packages: {'app': {defaultExtension: 'js'}}
});
System.import('app/app');
</script>
</head>
<body>
<app>loading...</app>
</body>
</html>
app/app.ts
import {bootstrap, Component} from 'angular2/angular2';
import {Http, Headers, HTTP_PROVIDERS} from 'angular2/http';
@Component({
selector: 'app',
viewProviders: [HTTP_PROVIDERS],
template: `<button (click)="ajaxMe()">Make ajax</button>`
})
class AppComponent {
constructor(public http: Http) { }
ajaxMe() {
this.http.get('https://some-domain.com/api/json')
.map(res => res.json())
.subscribe(
data => this.testOutput = data,
err => console.log('foo'),
() => console.log('Got response from API', this.testOutput)
);
}
}
bootstrap(AppComponent, []);
答案 8 :(得分:1)
它已经在angular2中了,所以你不需要在package.json
中放任何东西你必须像这样导入并注入它。 (这是一个Stuff服务,带有一个只记录响应的methodThatUsesHttp())
import {XHR} from 'angular2/src/core/compiler/xhr/xhr';
export class Stuff {
$http;
constructor($http: XHR) {
this.$http = $http;
}
methodThatUsesHttp() {
var url = 'http://www.json-generator.com/api/json/get/cfgqzSXcVu?indent=2';
this.$http.get(url).then(function(res) {
console.log(res);
}, function(err) {
console.log(err);
});
}
}
答案 9 :(得分:1)
import {Http, Response} from '@angular/http';
答案 10 :(得分:0)
对于Angular 4.3 +,5。+
// app.module.ts:
import {NgModule} from '@angular/core';
import {BrowserModule} from '@angular/platform-browser';
// Import HttpClientModule from @angular/common/http
import {HttpClientModule} from '@angular/common/http';
@NgModule({
imports: [
BrowserModule,
// Include it under 'imports' in your application module
// after BrowserModule.
HttpClientModule,
],
})
export class MyAppModule {}
在服务类中
import { HttpClient } from '@angular/common/http';
您可能还需要的其他套餐
import { HttpEvent, HttpInterceptor, HttpHandler, HttpRequest, HttpResponse, HttpErrorResponse } from '@angular/common/http';
在package.json
"@angular/http": "^5.1.2",
参考是here
答案 11 :(得分:0)
运行:
npm install --save @angular/http
然后通过
导入import {HttpModule} from '@angular/http'
答案 12 :(得分:-1)
使用http模块的简单示例:
import {Component, View, bootstrap, bind, NgFor} from 'angular2/angular2';
import {Http, HTTP_BINDINGS} from 'angular2/http'
@Component({
selector: 'app'
})
@View({
templateUrl: 'devices.html',
directives: [NgFor]
})
export class App {
devices: any;
constructor(http: Http) {
this.devices = [];
http.get('./devices.json').toRx().subscribe(res => this.devices = res.json());
}
}
bootstrap(App,[HTTP_BINDINGS]);