I have the following ng-repeat code:
<li ng-repeat="vid in vids | filter:query | orderBy:orderProp">
{{vid.title}}
</li>
My question is, can I loop through vids and print out each and every key and value if I don't know the key name?
So sort of how I would do it in php:
<?php
foreach ($vids as $key => $val) {
echo $key . "=" . $val;
}
?>