首先:是的,我已經事先谷歌搜索,並且solution出現了不適合我。如何讓Angular2在渲染組件之前等待諾言
語境
我有一個角2成分調用的服務,並且需要一旦接收到該響應執行一些數據操作:
ngOnInit() {
myService.getData()
.then((data) => {
this.myData = /* manipulate data */ ;
})
.catch(console.error);
}
在其模板中,該數據是傳遞給子組件:
<child-component [myData]="myData"></child-component>
這是導致孩子出錯的錯誤myData
未定義。上面發佈的谷歌結果談到了使用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添加MyDataResolver
到providers
屬性:
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
providers: [
MyService,
MyResolver
]
})
一直使用這個接口改變了嗎?
你可以實現「myData的」孩子的財產作爲setter和檢查「未定義」呢? – rook
它是'MyResolver'還是'MyDataResolver'。您的問題中的代碼似乎不一致。 –