刷新ListView在NativeScript和Angular中在运行时添加新元素

时间:2016-11-30 11:44:07

标签: angular typescript nativescript

我正在构建一个基于ListView的组件,类似于{N}页面中的杂货示例。我有一个" +"按钮,需要添加新项目到列表,我有这个代码:

$('form').submit(function() {
    $('.mask').unmask();
});

这是模板:

import { Component, OnInit } from '@angular/core';

@Component({
    moduleId: module.id,
    selector: 'my-list',
    templateUrl: 'my-list.component.html'
})
export class ListComponent implements OnInit {
    private myList: CustomObject;
    constructor() { }

    ngOnInit() { }

    addItem(){
        this.myList.push(new CustomObject());
    }

}

我的问题是,当我点击" +"按钮,我得到一个不可饶恕的例外。当我用代码填充列表时,没有问题,但我需要用户可以向视图中添加新元素。如我所描述的那样实现动态ListView的正确方法是什么?

编辑:

  

" main"发生了未被捕获的例外情况。线。   com.tns.NativeScriptException:调用js方法getView失败

     

错误列表模板中找不到合适的视图!嵌套级别:0文件:   " /data/data/org.nativescript.MyApp/files/app/tns_moudules/nativescript-angular/directives/list-view-comp.js,   行:135列:8

     

StackTrace:Frame:function:' getSingleViewRecursive',file:....

1 个答案:

答案 0 :(得分:4)

在NativeScript + Angular-2应用程序中,您可以使用AsyncPipe

有关如何通过NativeScript + NG2应用程序中的异步管道提供数据的示例here

值得注意的是使用 RxObservable

<强> page.component.ts

import { Component, ChangeDetectionStrategy } from "@angular/core";
import { Observable as RxObservable } from "rxjs/Observable";

export class DataItem {
    constructor(public id: number, public name: string) { }
}

@Component({
    templateUrl: "ui-category/listview/using-async-pipe/using-async-pipe.component.html",
    changeDetection: ChangeDetectionStrategy.OnPush,
})
export class UsingAsyncPipeComponent {
    public myItems: RxObservable<Array<DataItem>>;

    constructor() {
        let items = [];
        for (let i = 0; i < 3; i++) {
            items.push(new DataItem(i, "data item " + i));
        }

        let subscr;
        this.myItems = RxObservable.create(subscriber => {
            subscr = subscriber;
            subscriber.next(items);
            return function () {
                console.log("Unsubscribe called!");
            };
        });

        let counter = 2;
        let intervalId = setInterval(() => {
            counter++;
            items.push(new DataItem(counter + 1, "data item " + (counter + 1)));
            subscr.next(items);
        }, 1000);

        setTimeout(() => {
            clearInterval(intervalId);
        }, 15000);
    }
}

<强> page.component.html

<ListView [items]="myItems | async" class="list-group">
    <template let-item="item" let-i="index" let-odd="odd" let-even="even">
        <GridLayout class="list-group-item" [class.odd]="odd" [class.even]="even">
            <Label [text]="item.name" android:class="label-item"></Label>
        </GridLayout>
    </template>
</ListView>

在这个基本示例中,使用setInterval模拟异步,但基于相同的逻辑,您可以使用按钮实现所需的UX。