在我的标记中,我有:
<div class="sli1"
data-values="10, 20, 30, 40,50, 60, 70"
无论如何,我是否可以将数据值绑定为一个可以与angular一起重用的模型,通过ng绑定我不知道如何做到这一点。
这里是:
<div ng-app="myApp" ng-controller="myCtrl">
<div class="sli1" data-values="{{ dataValues.join(',') }}">The div tab</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.dataValues = [10, 20, 30, 40, 50, 60, 70];
});
</script>
希望得到帮助。
ng-list
指令将允许您执行此操作,只需要使用[]
数组而不是字符串。
标记
<body class="container" ng-controller="mainCtrl" ng-init="test=[10,20,30,40,50,60,70]">
<input ng-model="test" ng-list="," />
</body>
Plunkr此处