angularjs中ng-model的动态数据

时间:2014-05-30 00:39:53

标签: angularjs

HTML

<div ng-controller="Main">
  <input type="text" ng-model="rootFolders">
</div>

JS

function Main($scope) {
  $scope.rootFolders = '5';
}

如何动态添加数据代替&#34; 5&#34;,即rootFolders。 例如,添加计数数据或变量。

1 个答案:

答案 0 :(得分:0)

你在看这样的事吗?

function Main($scope) {
var folders =  ['FolderA','FolderB'];
  $scope.rootFolders = folders.length;
}

您可以像任何java脚本变量一样将值表单分配给范围变量。