0
如何在ajax請求數據到達後單獨渲染模板?加載模板後可以加載數據嗎?
在版本中我有一個ajax請求和請求如何延遲,窗體加載沒有數據。數據加載延遲幾秒鐘。
這種行爲不雅
@Component({
providers: [CompanyService],
templateUrl:'<input type="text" id="address" name="address" [(ngModel)]="company.address" #address="ngModel" >'
})
export class FormComponent {
private company:Company = new Company();
private acao:String = null;
constructor(private companyService:CompanyService) {
this.route.params.subscribe(params => {
if (params['id'] !== undefined) {
this.companyService.getById(params['id']).subscribe(result => this.company = result);
this.acao = 'edit';
}
});
}
我簡化代碼更好的視覺效果。