如何将数组从AngularJS传递到JSP

时间:2019-07-10 12:25:05

标签: angularjs jsp ejb

我正在使用EJB在AngularJs中工作。我需要将值数组传递到“我的JSP”页面或EJB Bean。

我尝试了window.location.replace,它不起作用,因为我需要在提交表单之前传递值。我在Jsp中只使用了一个。

这就是我的设计的样子,就像我使用推入和拼接功能动态添加或删除行一样。

<tbody ng-repeat="values in myArray1 track by $index">
   <tr>
       <td>
           <input name="fblimit1{{$index}}" id="fblimit1{{$index}}"
                  ng-model="value.fblimit1" type="text">
       </td>
       <td>
           <input name="fblimit2{{$index}}" id="fblimit2{{$index}}"
                  ng-model="value.fblimit2" type="text">
       </td>
       <td>
           <input name="fblimit3{{$index}}" id="fblimit3{{$index}}"
                  ng-model="value.fblimit3" type="text">
       </td>
   </tr>

值以fblimit10fblimit20fblimit30的形式传递给bean类,但我需要将所有这些作为“数组”或“对象”或“哈希值”传递到ejb bean类,那么只有我才能循环和处理它。

0 个答案:

没有答案