开发者社区> 问答> 正文

如何在Angular 2中使用TypeScript过滤数组?

ng-2父子数据继承对我来说一直很困难。

似乎可行的可行的解决方案是将我的整个数据数组过滤到仅由单个父ID引用的子数据组成的数组。换句话说:数据继承成为通过一个父代ID进行数据过滤。

在一个具体的示例中,它可能看起来像:过滤books数组以仅显示带有确定的book store_id。

import {Component, Input} from 'angular2/core';

export class Store { id: number; name: string; }

export class Book { id: number; shop_id: number; title: string; }

@Component({ selector: 'book', template:`

These books should have a label of the shop: {{shop.id}}:

<p *ngFor="#book of booksByShopID">{{book.title}}</p>

` ]) export class BookComponent { @Input() store: Store;

public books = BOOKS;

// "Error: books is not defined" // ( also doesn't work when books.filter is called like: this.books.filter // "Error: Cannot read property 'filter' of undefined" ) var booksByStoreID = books.filter(book => book.store_id === this.store.id) }

var BOOKS: Book[] = [ { 'id': 1, 'store_id': 1, 'name': 'Dichtertje' }, { 'id': 2, 'store_id': 1, 'name': 'De uitvreter' }, { 'id': 3, 'store_id': 2, 'name': 'Titaantjes' } ]; TypeScript对我来说是新手,但我想我已经接近使事情在这里起作用。

(也可以选择覆盖原始books数组,然后使用*ngFor="#book of books"。) 问题来源于stack overflow

展开
收起
保持可爱mmm 2020-02-08 11:45:59 579 0
1 条回答
写回答
取消 提交回答
  • 您可以在此处查看plunker示例过滤器中的示例

    filter() {

    let storeId = 1;
    this.bookFilteredList = this.bookList
                                .filter((book: Book) => book.storeId === storeId);
    this.bookList = this.bookFilteredList; 
    

    }

    2020-02-08 11:48:58
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
现代TypeScript高级教程 立即下载
Angular从零到一 立即下载
低代码开发师(初级)实战教程 立即下载