03 2020 档案
MyBatisplus 使用IPage和Page分页
摘要:@RequestMapping(value = "/cityList",method = RequestMethod.POST) public ResponseVo<IPage<GovernanceRegulationClosePo>> querySearchCityDataList(@Reques 阅读全文
posted @ 2020-03-25 09:41 西门夜说 阅读(85688) 评论(2) 推荐(0)
点击ztree节点,多打开一个_blank窗口
摘要:发现在点击ztree节点后,页面多打开了一个_blank窗口,解决办法修改下jquery.ztree.all.js文件。 找到这一行: "\" ", ((url != null && url.length > 0) ? "href='" + url + "'" : ""), " target='", 阅读全文
posted @ 2020-03-19 23:46 西门夜说 阅读(376) 评论(0) 推荐(0)
jsp 页面最基本增删改查,批量删除
摘要:<%-- Created by IntelliJ IDEA. User: 3600X Date: 2020/3/7 Time: 17:18 To change this template use File | Settings | File Templates. --%> <%@ page cont 阅读全文
posted @ 2020-03-15 20:54 西门夜说 阅读(1451) 评论(0) 推荐(0)
jsp bootstrap 模态框数据回显
摘要:模态框: <%--修改模态框--%> <div class="modal fade" id="updateModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel"> <div class="modal-dialog" role 阅读全文
posted @ 2020-03-10 22:09 西门夜说 阅读(1296) 评论(0) 推荐(0)
jsp 分页条拼接表格拼接
摘要:后端: @Controller public class TRoleController { @Autowired private TRoleService tRoleService; @RequestMapping("/role/index") public String toRoleIndex( 阅读全文
posted @ 2020-03-09 21:21 西门夜说 阅读(234) 评论(0) 推荐(0)
springboot PageHelper 分页不生效问题
摘要:本来时每页两条可就是分页不生效,这是为什么?我在上面的业务代码逻辑中调用startPage()方法后,不是直接去查询列表,而是先去查了记录数量,所以后面的查列表的接口就不会使用分页! 修改: 分页成功 阅读全文
posted @ 2020-03-09 20:52 西门夜说 阅读(857) 评论(0) 推荐(0)
springboot 打jar包 访问jsp页面404
摘要:解决方案 1 <dependencies> 2 <!--Spring Boot进行Web开发的模块--> 3 <dependency> 4 <groupId>org.springframework.boot</groupId> 5 <artifactId>spring-boot-starter-we 阅读全文
posted @ 2020-03-07 16:22 西门夜说 阅读(1725) 评论(0) 推荐(0)
Vue 路由跳转传递参数,页面刷新后数据不丢失
摘要: 阅读全文
posted @ 2020-03-04 11:34 西门夜说 阅读(1522) 评论(0) 推荐(0)