Here is the HTML content I am working with:
<span>{{queries['q1_name'].parameters.length}}</span> <!--Not working: Doesn't show length of parameters-->
Below is my JavaScript object:
$scope.queries = {"q1_name":
{"parameters":
{"P1":"abc" }
}
}
While I could create a function to achieve this, I am attempting to retrieve the length directly in HTML.