gpt4 book ai didi

javascript - 如何使用 ngFor Angular2 的表中的输入占位符

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

我有一个数组

 public example = [['hallo', 'fruit', 'rose'], ['apple','book']]

我想制作一个输入表,哪些值取决于我现在使用哪个部分http://localhost:4200/app?part=1

http://localhost:4200/app?part=2

我在我的组件中获取此信息

   this.part = this.activatedRoute.snapshot.queryParams['part'];

我想要的是第一部分的输入表 Part1 example和这样的输入表 enter image description here如果我有第二部分。

我尝试了这段代码

      <table>
//choose 0 or 1 array in example array (this works!)
<tr *ngFor="let a of example[part-1]">
<td><input> </td>
</tr>
</table>

我的问题是,如果我尝试在输入中插入占位符或 ngFor,我不会得到结果...我该如何解决这个问题?

最佳答案

我不太清楚你想要实现什么,但你可以尝试:

  <table>
//choose 0 or 1 array in example array (this works!)
<tr *ngFor="let a of example[part-1]">
<td><input [placeholder]="a"></td>
</tr>
</table>

这将为您提供带有占位符“hello”、“apple”等的输入。

如果您想要的是每个输入只有一个字母占位符,那么只需在 td 上添加另一个 *ngFor

  <table>
//choose 0 or 1 array in example array (this works!)
<tr *ngFor="let a of example[part-1]">
<td *ngFor="let b of a.split('')"><input [placeholder]="b"></td>
</tr>
</table>

关于javascript - 如何使用 ngFor Angular2 的表中的输入占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45298894/

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