gpt4 book ai didi

angular - 使用索引甚至在键值管道中

转载 作者:行者123 更新时间:2023-12-03 23:14:57 24 4
gpt4 key购买 nike

我想迭代对象中的键值对并每行显示两个项目。我查看了其他类似的例子 Example但我不知道如何为此添加键值。

这是我的代码:

<div *ngFor="let item of book.bookData.privateData | keyvalue; index as i; let even = even">
<div fxFlex="100" fxLayout="row" *ngIf="even">
<div fxFlex="50" fxLayout="column">
Key: <b>{{book.bookData.privateData[i].key}}</b> and Value: <b>{{book.bookData.privateData[i].value}}</b>
</div>
<div fxFlex="50" fxLayout="column">
Key: <b>{{book.bookData.privateData[i+1].key}}</b> and Value: <b>{{book.bookData.privateData[i+1].value}}</b>
</div>
</div>
</div>

这不起作用,因为没有 keyvalue privateData 上的属性对象,属性被分配给 item .

在此先感谢您的帮助!

编辑:

以下是我试图实现的工作示例,但这显然不是一种有效的方法:
<div *ngFor="let item of bookState.bookData.privateData | keyvalue; index as i; let even = even">
<div fxFlex="100" fxLayout="row" *ngIf="even">
<div fxFlex="50">
<div *ngFor="let deeperItem1 of bookState.bookData.privateData | keyvalue; index as i2">
<div *ngIf="i2 === i">
<b>INDEX {{i2}} and {{i}} </b>Key: <b>{{deeperItem1.key}}</b> and Value: <b>{{deeperItem1.value}}</b>
</div>
</div>
</div>
<div fxFlex="50">
<div *ngFor="let deeperItem2 of bookState.bookData.privateData | keyvalue; index as i3">
<div *ngIf="(i3-1) === i">
<b>INDEX {{i3}} and {{i}} </b>Key: <b>{{deeperItem2.key}}</b> and Value: <b>{{deeperItem2.value}}</b>
</div>
</div>
</div>
</div>
</div>

编辑2:

指定问题:问题不在于键值管道不起作用,问题在于如何有效地向这些添加索引以显示每行的 x 数量(在我的情况下为 2)项。
如有任何误解,敬请原谅!

最佳答案

这取决于您要迭代的结构。 Here您可以找到以下示例:

@Component({
selector: 'keyvalue-pipe',
template: `<span>
<p>Object</p>
<div *ngFor="let item of object | keyvalue">
{{item.key}}:{{item.value}}
</div>
<p>Map</p>
<div *ngFor="let item of map | keyvalue">
{{item.key}}:{{item.value}}
</div>
</span>`
})
export class KeyValuePipeComponent {
object: {[key: number]: string} = {2: 'foo', 1: 'bar'};
map = new Map([[2, 'foo'], [1, 'bar']]);
}

在您的情况下,如果您没有键值结构,请使用如下 map 案例:
<div *ngFor="let item of book.bookData.privateData | keyvalue; let i=index">
<div fxFlex="100" fxLayout="row" *ngIf="i%2 === 0">
<div fxFlex="50" fxLayout="column">
Key: <b>{{item.key}}</b> and Value: <b>{{item.value}}</b>
</div>
<div fxFlex="50" fxLayout="column" *ngIf="(book.bookData.privateData|keyvalue)[i+1]">
Key: <b>{{(book.bookData.privateData|keyvalue)[i+1].key}}</b> and Value: <b>{{(book.bookData.privateData|keyvalue)[i+1].value}}</b>
</div>
</div>
</div>

关于angular - 使用索引甚至在键值管道中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53041643/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com