我尝试在路由呈现组件之前获取数据。在app-component中,我从后端获得一个数组。这个数组通过ItemsServices传递给Statisticlist,或者,这就是我想要它的方式。问题是,似乎Statisticlist组件在数组传递之前呈现,因此当来自itemsService的console.log项时,它在statisticlist中未定义,但在app组件中未定义。如何在服务中设置值后继续渲染组件?
我查找了Resolver,但我只找到了数据在路径中传递的示例,大多数情况下它是一个名为id的变量。我想通过服务传递我的数组,但在获取后加载组件。在我的情况下,我无法理解我应该如何使用它。
首次建议后编辑:所以,我尽可能使用解析器跟踪了this文章。我没有错误,但没有任何错误。 itemsArray仍未在statisticlist-component中定义。这就是我的代码现在的样子。
编辑2:我现在意识到在statisticlist-component中,我正在尝试this.route.snapshot.params['items']
但是项目不是路线的参数,就像在文章示例中那样..但是我如何让它做我所做的事情我试图这样做,我不知道。
编辑3:我已经意识到解析器需要一个可观察的,这就是我现在正在尝试的。现在还好运。获取TypeError:无法在ItemsService.setItems(items.service.ts:11)中设置未定义的属性'items'
//items
export class Items {
constructor(public items: any[]){}
}
//itemsService
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs/Observable';
import { Items } from './items';
@Injectable()
export class ItemsService {
public items: Items;
setItems(items: any[]) {
console.log(items);
this.items.items = items;
}
getItems() {
return Observable.create(observer => {
setTimeout(() => {
observer.next(this.items)
observer.complete();
}, 3000);
});
}
}
//items-resolve
import { Component } from '@angular/core';
import { Resolve } from '@angular/router';
import { Items } from './items';
import { ItemsService } from './items.service';
import { Injectable } from '@angular/core';
@Injectable()
export class ItemsResolve implements Resolve<Items>{
constructor(private itemsService: ItemsService) { }
resolve() {
return this.itemsService.getItems();
}
}
<!-- app-component.html -->
<div class="btn-group btn-group-justified" role="group" aria-label="..." id="button-grp">
<div class="btn-group" role="group">
<a [routerLink]="['brott', region]"><button (click)='onClickCrimes(region)' type="button" class="btn btn-default">Brott</button></a>
</div>
<div class="btn-group" role="group">
<a [routerLink]="['statistik', region]"><button (click)='onClickStatistics(region)' type="button" class="btn btn-default">Statistik</button></a>
</div>
</div>
<router-outlet></router-outlet>
</div>
//app.routing.ts
import { RouterModule, Routes } from '@angular/router';
import { FeedlistComponent } from './feedlist/feedlist.component';
import { StatisticlistComponent } from './statisticlist/statisticlist.component';
import { ItemsResolve} from './items-resolve';
const APP_ROUTES: Routes = [
{ path: 'brott/:region', component: FeedlistComponent },
{ path: 'statistik/:region', component: StatisticlistComponent, resolve: { items: ItemsResolve} },
{ path: '', component: FeedlistComponent }
];
export const routing = RouterModule.forRoot(APP_ROUTES);
//statisticlist.component.ts
import { Component, OnInit, Input } from '@angular/core';
import { ItemsService } from '../items.service';
import { ActivatedRoute } from '@angular/router';
import { Items } from '../items';
@Component({
selector: 'app-statisticlist',
templateUrl: './statisticlist.component.html',
styleUrls: ['./statisticlist.component.css']
})
export class StatisticlistComponent implements OnInit {
itemsArray: any[];
items: Items;
constructor(private itemsService: ItemsService, private route: ActivatedRoute) { }
ngOnInit() {
this.items = this.route.snapshot.params['items'];
this.itemsArray = this.items.items;
console.log(this.itemsArray);
}
}
<!-- statisticlist.component.html -->
<div class="margin-top">
<div *ngIf="isDataAvailable">
<ul class="list-group" *ngFor="let item of itemsArray">
<!-- ngFor, lista alla län och deras brottsstatistik -->
<li class="list-group-item list-group-item-info">
<p>{{item?.region}}</p>
</li>
<li class="list-group-item">Invånare: {{item?.population}}</li>
<li class="list-group-item">Brott per kapita (denna veckan): {{item?.crimePerCapita}}%</li>
</ul>
</div>
</div>
//app.module.ts (I excluded all of the imports to make the reading easier)
@NgModule({
declarations: [
AppComponent,
MapComponent,
FeedlistComponent,
FeedComponent,
StatisticlistComponent,
StatisticComponent,
HeaderComponent,
],
imports: [
BrowserModule,
FormsModule,
HttpModule,
routing,
],
providers: [HttpService, ItemsService, ItemsResolve],
bootstrap: [AppComponent],
})
export class AppModule { }
我在statisticlist-component中的ngOnInit看起来与他在文章中的不同。他需要使用他通过解析器获取的id来获取联系人,但我只需要使用通过解析器获得的数组..有什么建议吗?
答案 0 :(得分:1)
你实际上是在正确的轨道上。你正在寻找解析器。这些解析器不仅可以返回字符串或其他基本类型。这些也可以返回一个可观察的。在渲染组件之前,angular2路由器将等待该observable解析。
基本概述是:
定义一个获取数据并实现解析接口的解析器
export class ItemsResolve implements Resolve<Contact> {
constructor(private itemsService: ItemsService) {}
resolve(route: ActivatedRouteSnapshot) {
// should return an observable
return this.itemsService.getWhatever();
}
}
提供你的解析器
@NgModule({
...
providers: [
...,
ItemsResolve
]
})
在路线定义中指向此解析程序
{
path: 'items',
component: ItemsComponent,
resolve: {
items: ItemsResolve
}
}
您可以在ThoughtRam http://blog.thoughtram.io/angular/2016/10/10/resolving-route-data-in-angular-2.html
上找到一篇深入的文章