我从xsl转换器获取我的html模板+ json数据,它是动态的,它看起来像html代码加上字符串化json中的一些数据。问题是:我以什么方式将json字符串放在html代码中,以便控制器在html渲染之前捕获这个json数据?当我这么简单地说:
<div>{{ $scope.categories = [{},{},...]}}</div>
<div ng-repeat="category in categories" class="category">...</div>
它运作良好,但带来了一些奇怪的错误:
Error: 10 $digest() iterations reached. Aborting!
那么将数据从视图传递到控制器的好方法是什么?