无法使 @ngrx/store 正常工作
Posted
技术标签:
【中文标题】无法使 @ngrx/store 正常工作【英文标题】:Can't make @ngrx/store works properly 【发布时间】:2016-12-30 17:43:43 【问题描述】:我有这个工作的 Angular 2 应用程序。我正在尝试将 @ngrx/store 添加到应用程序,但似乎我无法使其工作。 这是我必须要做的:
product.component.ts
import Component, Input, ChangeDetectionStrategy from "@angular/core";
import ProductService from "../index";
declare const module;
@Component(
selector: 'products',
moduleId: module.id,
providers: [ProductService],
templateUrl: '_products.component.html',
styleUrls: ['_products.component.css'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class _ProductsComponent
products;
constructor(private productService: ProductService)
this.products = this.productService.products$;
this.productService.loadProducts();
product.reducer.ts
import ActionReducer, Action from '@ngrx/store';
import Product from "./index";
export const products: ActionReducer<Product> = (state: any = , action:Action) =>
switch (action.type)
case 'ADD_PRODUCTS':
return action.payload;
default:
return state;
product.service.ts
import Injectable from "@angular/core";
import HttpService from "../shared/services/http.service";
import Store from "@ngrx/store";
import AppStore from "../shared/store.interface";
@Injectable()
export class ProductService
products$;
constructor(
private store: Store<AppStore>,
private httpService: HttpService)
this.products$ = store.select('products');
loadProducts()
return this.httpService.call('get', 'home')
.map(res => res.json())
.map(payload => ( type: 'ADD_PRODUCTS', payload ))
.subscribe(action => this.store.dispatch(action))
<div class="grid_products">
products | async // shows: [object Object],[object Object],[object Object],[object Object]....
<product*ngFor="let product of products | async" [product]="product" class="grid_product alcenter"></product> // gives me errors
</div>
我觉得我快到了,因为 products | async 显示结果。我只是没有得到 *ngFor 给我带来的错误:
原始异常:找不到“object”类型的不同支持对象“[object Object]”。 NgFor 只支持绑定到 Arrays 等 Iterables。
我的意思是我确实理解它的含义,但我不知道为什么会这样。我觉得我完全掌握了 tutos 所显示的内容......
我使用过的链接:
http://onehungrymind.com/build-better-angular-2-application-redux-ngrx/ Angular2 + ngrx/store for handling failure HTTP requests https://egghead.io/courses/building-a-time-machine-with-angular-2-and-rxjs不幸的是,几乎所有内容都已过时(不是 RC5)。
更新:我只是意识到如果我这样做 products |异步 | json 在我的 html 文件中,我得到了所有数据。所以它正在工作,我只是不明白为什么我会在 *ngFor 中出现这个错误。
【问题讨论】:
这似乎缺少一个空格:let productof products
你说得对,谢谢。这是提问时的错误。
如果你用更简单的方法测试它会发生什么,比如:<ul><li *ngFor="let product of products | async"> product | json </li></ul>
?
【参考方案1】:
在 reducer 上,您需要将状态初始化为数组而不是对象。
现在你有
state: any =
做起来
state: any = []
当模板最初尝试呈现 html 时,它会尝试迭代“产品”的初始状态,它是一个对象而不是数组。
【讨论】:
【参考方案2】:把你的减速器改成这样:
import ActionReducer, Action from '@ngrx/store';
import Product from "./index";
export const products: ActionReducer<Product[]> = (state: Product[] = [], action:Action) =>
switch (action.type)
case 'ADD_PRODUCTS':
state.push(action.payload);
return state;
default:
return state;
【讨论】:
以上是关于无法使 @ngrx/store 正常工作的主要内容,如果未能解决你的问题,请参考以下文章