我想为多文件下载目的创建复选框。有许多文件的列表,每个文件都有自己的复选框。我想选择其中的 4 个并仅按一次下载按钮,然后检查的所有文件的名称将作为列表发送到控制器(Angular JS)。但我不知道如何启动它以及如何将参数列表发送回 Angular JS 控制器。我想要做的是将列表发送回控制器并调用用 JAVA 编写的多重下载方法。
问问题
7798 次
1 回答
7
You can just use ng-model to assign the property to put the value in. It will automatically put it in an array. Here is a fiddle
And here's the code:
<select multiple="multiple" ng-model="value"
ng-options="option for option in ['bananas', 'rice', 'applesauce', 'toast']"></select>
<hr/>
value: {{value}}
于 2012-12-05T14:25:35.600 回答