我有一個FirebaseListObservable被循環並且列表中的單個對象被傳遞,我如何獲得通過的對象的鍵值?如何從數組中的單個對象獲取密鑰?
對象的單個實例被選中時傳遞給該函數,我需要獲取該鍵,但是如果使用value.key或value.uid,則它是未定義的。
這是不通過火力點陣列循環
<sebm-google-map-marker
*ngFor="let m of markers | async"
(markerClick)="test(m)"
[latitude]="m.lat"
[longitude]="m.lng"
>
當這個點擊的功能是
test(m){
var things=m;
console.log(m.val());}
我想獲得該項目的重點是通過
this is the data being passed and want to get the key for the object
請分享一些代碼示例爲他人理解 – abeyaz
@abeyaz你去那裏謝謝你告訴我 –
能告訴你填充組件的'marker'屬性的代碼?我認爲一種解決方案可能是在從Firebase後端加載存儲在** marker **對象中的項**鍵**時。 – Picci