<input ng-model="search.name" placeholder="Name" />
<tbody>
<div ng-init="FilteredGeojson = ho|filter:search">
<tr ng-repeat="hf in FilteredGeojson">
<td>{{ hf.name }}</td>
</tr>
</div>
</tbody>
</table>
<div leaflet-directive id="map" data="FilteredGeojson"></div>
如果可能的话,在 ng-init 中进行过滤很重要,但我无法解决它,我无法制作 ng-repeat 并创建我传递给我的指令的范围,因为它会启动无限摘要循环。