Angular2,现在处于测试阶段,我的公司决定对它进行一些研究。 我试图从我的服务中设置一个请求。我浏览所有的互联网,但没有任何工作。 (也许帖子是在Beta发布之前写的)。
所以,我有这样的boot.ts:
import {bootstrap} from 'angular2/platform/browser';
import {Component, provide} from 'angular2/core';
import {HTTP_PROVIDERS} from 'angular2/http';
import {BrandsComponent} from './brands/brands.component';
import {BrandsService} from './brands/brands.service';
@Component({
selector: 'my-app',
template: `
<brands></brands>
`,
directives: [BrandsComponent]
})
export class AppComponent {
}
bootstrap(AppComponent, [HTTP_PROVIDERS, BrandsService]);
我的BrandsComponent注入了我的BrandsService。 这是我的服务代码:
import {Http} from 'angular2/http';
import {Injectable, Inject} from 'angular2/core';
@Injectable()
export class BrandsService{
constructor(public http: Http) {
console.log('Task Service created.', http);
http.get('http://google.fr');
}
getBrands(){
//return this.http.get('./brands.json');
return [];
}
}
在我的控制台中,我有“创建任务服务”日志,但是任何ajax请求都会进行。
我不能告诉你我尝试了什么,因为我改变了我的代码大约十亿次。
感谢您的帮助!
@Edit:
这是我的BrandsComponent代码:
import {Component} from 'angular2/core';
import {Brand} from './brand.interface';
import {BrandsService} from './brands.service';
import {ModelsComponent} from './../models/models.component';
@Component({
selector: 'brands',
templateUrl: 'templates/brands/list.html',
providers: [BrandsService],
directives: [ModelsComponent]
})
export class BrandsComponent implements OnInit{
public brands;
public selectedBrand : Brand;
constructor(private _brandsService: BrandsService) { }
/*
* Get all brands from brands service
*/
getBrands(){
this.brands = this._brandsService.getBrands();
}
/*
* On component init, get all brands from service
*/
ngOnInit(){
this.getBrands();
}
/*
* Called when li of brand list was clicked
*/
onSelect(brand : Brand){
this.selectedBrand = brand;
}
}
答案 0 :(得分:1)
subscribe
方法在它们上附加一些响应侦听器之前,不会发送相应的HTTP请求。
在BrandsService
的构造函数中添加subscribe方法应触发您的HTTP请求:
import {Http} from 'angular2/http';
import {Injectable, Inject} from 'angular2/core';
@Injectable()
export class BrandsService{
constructor(public http: Http) {
console.log('Task Service created.', http);
http.get('http://google.fr').subscribe();
}
(...)
}
希望它可以帮到你, 亨利