私は自分のthymeleafベースのサイトに追加しようとしていて、与えられたリストをフィルタリングするためのユーザ入力を追加したいと思っています。私は非常にいくつかの方法を試みましたが、私は壁にぶつかっています。だから、誰かが私にデータをAngularに渡す方法を教えてくれればすばらしいでしょう。 thymeleafリストを角でフィルタリングする方法
この
リスト/ thymeleaf内のテーブルです:<p>Type a letter in the input field:</p>
<p>
<input type="text" ng-model="test">
</p>
I:私はそこに任意のより多くのデータが必要であるかわからない
<table class="table table-striped">
<tr>
<th>ID</th>
<th>Manufacturer</th>
<th>Type</th>
<th>Characteristics</th>
<th class="text-center">Quantity</th>
<th class="text-center" colspan="2">Administration Actions</th>
</tr>
<th:block th:each="item, iterStat : ${list}" varStatus="status">
<tr>
<td th:text="${iterStat.count}"></td>
<td th:text="${item.manufacturer.name}"></td>
<td th:text="${item.type}"></td>
<td th:text="${item.characteristics}"></td>
<td class="text-center" th:text="${item.quantity}"></td>
<td class="text-center"><a th:href="@{${'fuses/' + item.id}}"
class="btn btn-warning btn-sm"> <span
class="glyphicon glyphicon-edit"></span> Edit
</a> <a th:href="@{${'fuses/' + item.id + '/delete'}}"
class="btn btn-danger btn-sm"> <span
class="glyphicon glyphicon-trash"></span> Delete
</a></td>
</tr>
</th:block>
</table>
、これは私が使用されるモック検索段落がありますメーカーによってリストをフィルタリングしたい。