1
我想想知道我怎麼能在NG-重複是誰在一個指令調用設置條件:AngularJS:病情NG重複指令
<map-marker ng-repeat='obj in objects'
title= 'obj.name'
latitude= 'obj.last_point().latitude'
longitude= 'obj.last_point().longitude'
click= 'state.toggle_selected(obj)'
icon= 'obj.toggle_icon()'>
</map-marker>
我想設置一個標誌我的地圖只有當obj有last_point()。種類:
<map-marker ng-repeat='obj in objects' ng-if='obj.last_point()' ...
我的地圖標記是一個自定義指令。
我找不到解決方案。你知道我該怎麼做嗎?
感謝您的幫助
可只使用'filter'你的'objects'? – Cherniv
我在嘗試,但我有一個對象的集合,但我不知道如何處理它。目前我有:'@am.filter「has_point」, - > (輸入) - > console.log輸入 '和我的電話:'
guillaumek