本文整理汇总了TypeScript中tns-core-modules/data/observable-array.ObservableArray.getItem方法的典型用法代码示例。如果您正苦于以下问题:TypeScript ObservableArray.getItem方法的具体用法?TypeScript ObservableArray.getItem怎么用?TypeScript ObservableArray.getItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tns-core-modules/data/observable-array.ObservableArray
的用法示例。
在下文中一共展示了ObservableArray.getItem方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: onUpdateItemClick
public onUpdateItemClick() {
for (var index = 0; index < this._dataItems.length; index++) {
this._dataItems.getItem(index).id = Math.random() * 100;
this._dataItems.getItem(index).name = "This is an updated item";
this._dataItems.getItem(index).description = "This is the updated item's description.";
}
}
示例2: function
export const test_ObservableArray_getItemShouldReturnCorrectItem = function () {
// >> observable-array-getitem
const array = new ObservableArray([1, 2, 3]);
const firstItem = array.getItem(0);
const secondItem = array.getItem(1);
const thirdItem = array.getItem(2);
// << observable-array-getitem
TKUnit.assert(firstItem === 1 && secondItem === 2 && thirdItem === 3, "ObservableArray getItem() should return correct item!");
};
示例3: onUpdateItemClick
public onUpdateItemClick() {
for (let index = 0; index < this._dataItems.length; index++) {
const item = this._dataItems.getItem(index);
if (item) {
item.id = Math.random() * 100;
item.name = "This is an updated item";
item.description = "This is the updated item's description.";
}
}
}
开发者ID:telerik,项目名称:nativescript-ui-samples-angular,代码行数:10,代码来源:listview-observable-array.component.ts