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
您可以在此处查看plunker示例过滤器中的示例
filter() {
let storeId = 1;
this.bookFilteredList = this.bookList
.filter((book: Book) => book.storeId === storeId);
this.bookList = this.bookFilteredList;
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。