上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 关于jpa example使用 一个搜索匹配两个 阅读全文
posted @ 2020-07-27 22:10 JaminYe 阅读(182) 评论(0) 推荐(0) 编辑
摘要: mui下拉菜单 <div id="pullrefresh" class="mui-content mui-scroll-wrapper"> <div class="mui-scroll"> <ul class="mui-table-view mui-table-view-chevron" id="l 阅读全文
posted @ 2020-07-27 22:08 JaminYe 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: img在div中居中 div{ display: flex; justify-content: center; align-items: center; } <!--外层div 加上样式--> 阅读全文
posted @ 2020-07-27 22:06 JaminYe 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 高德地图定位api使用 <!--<script src='https://webapi.amap.com/maps?v=2.0&key=你的key'></script>--> var amp = AMap.plugin('AMap.Geolocation', function () { geoloc 阅读全文
posted @ 2020-07-27 22:05 JaminYe 阅读(589) 评论(0) 推荐(0) 编辑
摘要: 高德地图驾车导航使用 传入起点终点 返回路线长度,耗时,路线规划 function (lon, lat) { var destination = [lon, lat]; var index = layer.msg("查询中....", {time: 0, shade: 0.01}) $.ajax({ 阅读全文
posted @ 2020-07-27 22:04 JaminYe 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 关于jpa example使用 阅读全文
posted @ 2020-07-15 23:25 JaminYe 阅读(380) 评论(0) 推荐(0) 编辑
摘要: 文件下载 public void downloadFile(String fileCd, HttpServletResponse response) { WrBuMd wrBuMd = wrBuMdRepository.findById(fileCd).orElse(null); File file 阅读全文
posted @ 2020-07-15 23:21 JaminYe 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 文件夹下的文件根据最后修改时间排序 /** * 文件排序 越新越靠前 * * @param filePath 文件路径 */ public static File[] fileSort(String filePath) { File file = new File(filePath); File[] 阅读全文
posted @ 2020-07-15 23:19 JaminYe 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 验证图片是否加载成功 //所有图片加载完成 var flag = 0; for (var i = 0; i < $(".img").length; i++) { $(".img")[i].onload = function () { flag++; if (flag == $(".img").len 阅读全文
posted @ 2020-07-15 23:17 JaminYe 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 使用jdk1.8的LocalDate获取当天,本月第一天,本月最后一天,今年第一天,今年最后一天 LocalDate localDate = LocalDate.now(); //今天 Date day = Date.from(localDate.atStartOfDay(ZoneId.system 阅读全文
posted @ 2020-07-15 23:16 JaminYe 阅读(3717) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页