我正在尝试处理 ng-repeat 循环内的范围问题 - 我已经浏览了很多问题,但还不能让我的代码正常工作。
控制器代码:
function Ctrl($scope) {
$scope.lines = [{text: 'res1'}, {text:'res2'}];
}
看法:
<div ng-app>
<div ng-controller="Ctrl">
<div ng-repeat="line in lines">
<div class="preview">{{text}}{{$index}}</div>
</div>
<div ng-repeat="line in lines">
<-- typing here should auto update it's preview above -->
<input value="{{line.text}}" ng-model="text{{$index}}"/>
<!-- many other fields here that will also affect the preview -->
</div>
</div>
</div>
这是一个小提琴:http: //jsfiddle.net/cyberwombat/zqTah/
基本上我有一个包含多行文本的对象(它是一个传单生成器)。用户可以调整每一行文本(文本、字体、大小、颜色等),我想为它创建一个预览。上面的示例仅显示了用于输入文本的输入字段,我希望它能够自动/在键入时自动更新预览 div,但会有更多控件。
我也不确定我的代码是否适合循环索引 - 这是在循环内创建 ng-model 名称的最佳方法吗?