gpt4 book ai didi

html - 尝试使=“margin-left:{{data}};”样式起作用

转载 作者:行者123 更新时间:2023-12-02 09:19:08 25 4
gpt4 key购买 nike

index.ts
bubbles: any [][] = [['80%','Meeting'],['20%','Meeting']]

index.html
<div *ngFor="let bubble of bubbles">
<div class="bubble" style="margin-left:{{bubble[0]}};">
</div>
</div>

我试图让左边距样式使用数组bubble [0]中的数据。

for循环在该布局中给出['80%','Meeting'],因此我尝试将该数组的0元素设置为左边距样式,但这不起作用。还有另一种方法可以执行此过程吗?

最佳答案

使用[ngStyle]而不是style。文档here

<div class="bubble" [ngStyle]="{'margin-left': bubble[0]}">

关于html - 尝试使=“margin-left:{{data}};”样式起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44147623/

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