如何让 Angular2 在渲染组件之前等待承诺
How to make Angular2 wait for a promise before rendering component
首先:是的,我事先已经 Googled 这个了,但出现的 对我不起作用。
背景
我有一个 Angular 2 组件调用服务,并且需要在收到响应后执行一些数据操作:
ngOnInit () {
myService.getData()
.then((data) => {
this.myData = /* manipulate data */ ;
})
.catch(console.error);
}
在其模板中,该数据被传递给 child 组件:
<child-component [myData]="myData"></child-component>
这导致 child 变得 myData
未定义的错误。上面发布的 Google 结果讨论了使用 Resolver
但这对我不起作用。
当我创建一个新的解析器时:
import { Injectable } from '@angular/core';
import { Resolve, ActivatedRouteSnapshot } from '@angular/router';
import { Observable } from 'rxjs/Rx';
import { MyService } from './my.service';
@Injectable()
export class MyResolver implements Resolve<any> {
constructor(private myService: MyService) {}
resolve (route: ActivatedRouteSnapshot): Observable<any> {
return Observable.from(this.myService.getData());
}
}
app.routing.ts
const appRoutes: Routes = [
{
path: 'my-component',
component: MyComponent,
resolve: {
myData: MyDataResolver
}
}
];
export const routing = RouterModule.forRoot(appRoutes);
我收到一条错误消息,提示 MyDataResolver
没有提供商。当我在app.component.ts:
中的providers
属性中添加MyDataResolver
时,情况仍然如此
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
providers: [
MyService,
MyResolver
]
})
使用这个的界面有变化吗?
路由器支持从 resolve()
返回的 promise 或 observable。
另见 https://angular.io/api/router/Resolve
这应该可以满足您的要求:
@Injectable()
export class MyResolver implements Resolve<any> {
constructor(private myService: MyService) {}
resolve (route: ActivatedRouteSnapshot): Promise<any> {
return this.myService.getData();
}
}
另见 https://angular.io/docs/ts/latest/guide/router.html#!#resolve-guard
首先:是的,我事先已经 Googled 这个了,但出现的
背景
我有一个 Angular 2 组件调用服务,并且需要在收到响应后执行一些数据操作:
ngOnInit () {
myService.getData()
.then((data) => {
this.myData = /* manipulate data */ ;
})
.catch(console.error);
}
在其模板中,该数据被传递给 child 组件:
<child-component [myData]="myData"></child-component>
这导致 child 变得 myData
未定义的错误。上面发布的 Google 结果讨论了使用 Resolver
但这对我不起作用。
当我创建一个新的解析器时:
import { Injectable } from '@angular/core';
import { Resolve, ActivatedRouteSnapshot } from '@angular/router';
import { Observable } from 'rxjs/Rx';
import { MyService } from './my.service';
@Injectable()
export class MyResolver implements Resolve<any> {
constructor(private myService: MyService) {}
resolve (route: ActivatedRouteSnapshot): Observable<any> {
return Observable.from(this.myService.getData());
}
}
app.routing.ts
const appRoutes: Routes = [
{
path: 'my-component',
component: MyComponent,
resolve: {
myData: MyDataResolver
}
}
];
export const routing = RouterModule.forRoot(appRoutes);
我收到一条错误消息,提示 MyDataResolver
没有提供商。当我在app.component.ts:
providers
属性中添加MyDataResolver
时,情况仍然如此
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
providers: [
MyService,
MyResolver
]
})
使用这个的界面有变化吗?
路由器支持从 resolve()
返回的 promise 或 observable。
另见 https://angular.io/api/router/Resolve
这应该可以满足您的要求:
@Injectable()
export class MyResolver implements Resolve<any> {
constructor(private myService: MyService) {}
resolve (route: ActivatedRouteSnapshot): Promise<any> {
return this.myService.getData();
}
}
另见 https://angular.io/docs/ts/latest/guide/router.html#!#resolve-guard