I have json data with a colon in the label (see responsedata) which I\'m finding difficult to access in Angular with the following code:
Use brackets to access it like a dictionary rather than dot notation. Replace {{i.autn:numhits}} with {{i['autn:numhits']}}
{{i.autn:numhits}}
{{i['autn:numhits']}}
As a heads up, if you want to wrap autn:numhits with double quotes you will need to html escape them.