摘要: .. 阅读全文
posted @ 2017-08-19 17:25 Legolas_4 阅读(363) 评论(0) 推荐(0) 编辑
摘要: <html lang="en" xmlns:th="http://www.thymeleaf.org"><head> <meta charset="UTF-8"> <title>Test</title></head><body><div> <span th:text="${method}">haha 阅读全文
posted @ 2017-08-19 16:50 Legolas_4 阅读(149) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/xiaohuasan/p/5329510.html http://www.jb51.net/article/53479.htm 后面加url 路径 阅读全文
posted @ 2017-08-19 16:29 Legolas_4 阅读(158) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping(method = RequestMethod.GET, value = "/update/{id}")public String forUpdate(Model model, @PathVariable("id") Long id) { SystemRole syst 阅读全文
posted @ 2017-08-19 16:28 Legolas_4 阅读(548) 评论(0) 推荐(0) 编辑
摘要: 。。 阅读全文
posted @ 2017-08-19 15:23 Legolas_4 阅读(101) 评论(0) 推荐(0) 编辑
摘要: js取后台model值<script th:inline="javascript">var data = [[${data}]];</script> 这两种都行 隐藏域方法对象集合不太方便 这两种都行 隐藏域方法对象集合不太方便 阅读全文
posted @ 2017-08-19 11:06 Legolas_4 阅读(2436) 评论(0) 推荐(0) 编辑
摘要: @Overridepublic void addRoleResources(Resources[] resources, Long roleId) { Map<String, Object> params = new HashMap<>(); params.put("roleId", roleId) 阅读全文
posted @ 2017-08-19 10:42 Legolas_4 阅读(842) 评论(0) 推荐(0) 编辑
摘要: function addUserRole() { var instance = $('#resourcesTree').jstree(true); var select = instance.get_checked (true); var ids = []; for (var i = 0; i < 阅读全文
posted @ 2017-08-19 10:27 Legolas_4 阅读(178) 评论(0) 推荐(0) 编辑
摘要: <insert id="insert" parameterType="net.huadong.entity.system.SystemRole"> insert into SYSTEM_ROLE <trim prefix="(" suffix=")" suffixOverrides=","> <if 阅读全文
posted @ 2017-08-19 09:46 Legolas_4 阅读(451) 评论(0) 推荐(0) 编辑
摘要: <tr v-for="player of players :class="player.factionId? 'horde':'alliance'"> <th>{{ player.ranking }}</th> <th>{{ player.rating }}</th> </tr> 关于前端的东西,一 阅读全文
posted @ 2017-08-19 08:58 Legolas_4 阅读(310) 评论(0) 推荐(0) 编辑
摘要: var select = $('#roleTable').find('input[type="checkbox"]:checked'); 阅读全文
posted @ 2017-08-19 08:58 Legolas_4 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 代码示例:语句1:select * from student limit 9,4语句2:slect * from student limit 4 offset 9// 语句1和2均返回表student的第10、11、12、13行 //语句2中的4表示返回4行,9表示从表的第十行开始 阅读全文
posted @ 2017-08-19 08:54 Legolas_4 阅读(196) 评论(0) 推荐(0) 编辑