在 TypeScript 中获取 JSON 数组的最后一个元素
Posted
技术标签:
【中文标题】在 TypeScript 中获取 JSON 数组的最后一个元素【英文标题】:Get last element of a JSON array in TypeScript 【发布时间】:2020-06-15 02:03:58 【问题描述】:我需要获取 JSON 对象数组中最后一个元素的“id”属性的值。我可以通过 id 找到每个元素,但我还需要获取 JSON 对象数组中最后一个“id”的值。在下面的示例中,它是“3”。提前致谢!
let types: any[] =
[
'id': '0', 'value': '',
'id': '1', 'value': '' ,
'id': '2', 'value': '' ,
'id': '3', 'value': '' ,
];
let index = 0;
let indexNext = 1;
types.forEach((item) =>
if (item.id == index)
item.value = 'Book';
console.log(item.value); //Book
if (item.id == indexNext)
item.value = 'Magazine';
console.log(item.value); //Magazine
)
【问题讨论】:
【参考方案1】:试试这个:
types[types.length - 1]['id']
【讨论】:
那更短。谢谢@JGFMK!【参考方案2】:types[types.length - 1]
为您提供types
的最后一个元素。
如果您调用 forEach 对数组中的每一项执行某项操作,然后执行与最后一项不同的操作,则 Array#forEach 的回调参数将传递一个索引(作为该项之后的参数)。所以你可以写types.forEach((item, indexForItem) => ... );
,然后比较indexForItem
和types.length - 1
,看看你是否在最后一个。
【讨论】:
index 参数和 types[types.length -1] 一样,非常感谢!这是代码:types.forEach((item, indexForItem) => var t = types[types.length - 1]; if (t.id == indexForItem) console.log('The last id is: ' + t.id); // The last id is: 3 );
以上是关于在 TypeScript 中获取 JSON 数组的最后一个元素的主要内容,如果未能解决你的问题,请参考以下文章