gpt4 book ai didi

dart - 将 map 列表绑定(bind)到 Dart 中的表格

转载 作者:行者123 更新时间:2023-12-03 04:07:29 26 4
gpt4 key购买 nike

我在 dart 文件中定义了以下数据模型:

 @observable  List alist = toObservable([{'rel':'self', 'name':'John'}, 
{'rel':'Father', 'name':'tom'},
{'rel':'Mother', 'name':'jane'}]);

html中的表格如下:

<table id="summaryTable">
<thead>
<tr>
<th>Name</th>
<th>Ralationship to Me</th>
<th>Update History</th>
<th>Remove Relative</th>
</tr>
</thead>
<tr repeat = "{{p in alist}}">
<td>
{{p['name']}}
</td>
<td>
{{p['rel']}}
</td>
<td>
<button on-click="{{updateClicked}}">Update</button>
</td>
<td>
</td>
</tr>
</table>

该表未填充。应该改变什么?

最佳答案

很难说,因为您没有提供太多代码,但至少提供了 template丢失在

<tr template repeat="{{p in alist}}">

关于dart - 将 map 列表绑定(bind)到 Dart 中的表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21537657/

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