ssm整合3.easyui

举报
tea_year 发表于 2021/12/29 23:28:03 2021/12/29
【摘要】 <link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="easyui/themes/icon.css"> &lt...

  
  1. <link rel="stylesheet" type="text/css" href="easyui/themes/default/easyui.css">
  2. <link rel="stylesheet" type="text/css" href="easyui/themes/icon.css">
  3. <script type="text/javascript" src="easyui/jquery-1.8.3.min.js"></script>
  4. <script type="text/javascript" src="easyui/jquery.easyui.min.js"></script>
<!--需要在head里面添加easyui的引用-->
 

  
  1. <body>
  2.     数据条数:${size }
  3.     <table id="dg" class="easyui-datagrid" toolbar="#tb"
  4. fitColumns="true" rownumbers="true" pagination="true" 
  5.        title="员工列表" style="width:700px;height:250px"
  6. data-options="singleSelect:true,collapsible:true,
  7. url:'emp.json',method:'get'">
  8.     <thead>
  9.     <tr>
  10.     <th data-options="field:'empno',width:180">编号</td>
  11.     <th data-options="field:'ename',width:120">姓名</td>
  12.     <th data-options="field:'sal',width:180">工资</td>
  13.     <th data-options="width:200">&nbsp;&nbsp;</th>
  14.     </tr></thead>
  15.     </table>
  16.   </body>
fitColumns="true" rownumbers="true" pagination="true"         title="员工列表" style="width:700px;height:250px" data-options="singleSelect:true,collapsible:true, url:'emp.json',method:'get'">     <thead>     <tr>     <th data-options="field:'empno',width:180">编号</td>     <th data-options="field:'ename',width:120">姓名</td>     <th data-options="field:'sal',width:180">工资</td>     <th data-options="width:200">操&nbsp;&nbsp;作</th>     </tr></thead>     </table>   </body>
<!--注意field是对应json的数据-->
 
//控制器代码
 
 
@RequestMapping("/json") @ResponseBody public List<Emp> getEmps(){ List<Emp>empList=service.getList(); return empList; }
 

 

 

 

 

 

不使用json格式,自己写循环操作。

 


  
  1. <table class="easyui-datagrid" title="Basic DataGrid" style="width:700px;height:250px"
  2. data-options="method:'get',singleSelect:true">
  3. <thead>
  4. <tr>
  5. <th data-options="field:'t1',width:80">编号</th>
  6. <th data-options="field:'t2',width:100">产品</th>
  7. <th data-options="field:'t3',width:80,align:'right'">价格</th>
  8. <th data-options="field:'t4'">操作</th>
  9. </tr>
  10. </thead>
  11. <!-- 写循环; -->
  12. <c:forEach items="${list }" var="emp">
  13. <tr>
  14. <td>${emp.empno }</td>
  15. <td>${emp.ename }</td>
  16. <td>${emp.sal }</td>
  17. <td>
  18. <a href='emp/toAddEmp'>增加</a>
  19. <a href='emp/getEmp/${emp.empno}'>编辑</a>
  20. <a href='emp/${emp.empno}/deleteEmp'>删除</a>
  21. <a href='emp/deleteEmp2?empno=${emp.empno}'>删除2</a>
  22. </td>
  23. </tr>
  24. </c:forEach>
  25. </table>

 

 

 

 

 

文章来源: aaaedu.blog.csdn.net,作者:tea_year,版权归原作者所有,如需转载,请联系作者。

原文链接:aaaedu.blog.csdn.net/article/details/70943567

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。