jQuery获取ModelMap值

jQuery获取ModelMap值jQuery获取ModelMap值

Controller

 @GetMapping("/edit/{id}")
 public String edit(@PathVariable("id") Long id, ModelMap mmap)
 {
        List<Test> testList= testService.getById(id);
        mmap.put("testList", testList);
        return prefix + "/edit";
 }

edit.html

[[${testList}]]可取出从controller传过来的testList对象,该功能实现了对查询到的testList集合里的所有Test对象的value值的累加,并把最后累加值赋予input。

......

<input name="totalValue" value="0" style=" border-width:0;color:red;" class="form-control" type="text" maxlength="30" readonly="readonly">

......

function sumAmount(){
     var totalAmount = 0;
     for(var i = 0; i < [[${testList}]].length; i++){
          var result = [[${testList}]][i];
          totalAmount = accAdd(totalAmount, result.value);
     }
     $("input[name='totalValue']").val(totalAmount);
}

......

今天的文章jQuery获取ModelMap值分享到此就结束了,感谢您的阅读。

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/11391.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注