我想在一個搜索字段中使用空格(例如:Last Name)過濾json屬性,我可以使用空格訪問和打印JSON屬性,但我無法使用空格過濾JSON屬性。如何在搜索字段中使用空格來對JSON屬性應用過濾器?如何在空間上對JSON屬性應用搜索過濾器?
<div ng-init="jsonData()">
<table border="1" class="table table-striped">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Age</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="x in result | filter:searchText">
<td>{{x['First Name']}}</td>
<td>{{x['Last Name']}}</td>
<td>{{x.Age}}</td>
</tr>
</tbody>
</table>
</div>
能否請你解釋一下? –
我添加了一個示例,請參閱文檔以獲取更多參考。 –
我想在json數據中使用空格的特定列應用過濾器@BenBeck –