1

I want to create a nested expression in ng-bind-html eventdetails is a json object white data gets the input from a return $stateParams function

<div class="into" ng-bind-html="{{eventdetails.{{data.genre.{{data.event}}.intro}}}}
4

1 回答 1

1

您不需要任何花括号并使用括号表示法通过变量浏览对象,ng-bind-html这是一个 Angular 指令:

ng-bind-html="eventdetails[data.genre[data.event]].intro"
于 2014-07-05T21:26:20.587 回答