上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页
摘要: 已知如下数组: var arr = [ [1, 2, 2], [3, 4, 5, 5], [6, 7, 8, 9, [11, 12, [12, 13, [14] ] ] ], 10]; 编写一个程序将数组扁平化去并除其中重复部分数据,最终得到一个升序且不重复的数组 var dt= arr.toStr 阅读全文
posted @ 2019-08-28 10:16 泽泽生龙 阅读(1897) 评论(0) 推荐(0) 编辑
摘要: 代码封装在一个自执行的匿名函数中,然后传入参数jQuery (function($){ jQuery.fn.showPlugin = function () { //code here }; })(jQUery); jQuery.fn.showPlugin = function () { //cod 阅读全文
posted @ 2019-08-06 14:15 泽泽生龙 阅读(345) 评论(0) 推荐(0) 编辑
摘要: 在springboot+mybatis 中,经常会有多于的字段遗留在xml文件中,这种情况正常人会以为会判断空和null状态,不影响sql语句,但是实际上会有影响, 因为在parameter中未定义,是undefined,而不是null和空,导致查询的数据缺失 阅读全文
posted @ 2019-07-26 16:54 泽泽生龙 阅读(364) 评论(0) 推荐(0) 编辑
摘要: post请求: 阅读全文
posted @ 2019-07-26 15:52 泽泽生龙 阅读(212) 评论(0) 推荐(0) 编辑
摘要: 在input标签中添加 阅读全文
posted @ 2019-07-04 14:16 泽泽生龙 阅读(397) 评论(0) 推荐(0) 编辑
摘要: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <fork>true</f 阅读全文
posted @ 2019-07-02 15:48 泽泽生龙 阅读(1602) 评论(0) 推荐(0) 编辑
摘要: 用防抖动来阻止页面的重复提交: function debounce(func, wait) { let timeout return function () { clearTimeout(timeout) timeout = setTimeout(func, wait) //返回计时器 ID }} 阅读全文
posted @ 2019-07-01 09:39 泽泽生龙 阅读(2182) 评论(0) 推荐(0) 编辑
摘要: function back2Top() { $("body,html").animate({scrollTop:0},1000); return false;} 阅读全文
posted @ 2019-06-29 17:44 泽泽生龙 阅读(428) 评论(0) 推荐(1) 编辑
摘要: 使用echarts; 可以将echarts当作单文件引入: <script src="${ctx.contextPath}/js/modules/clsDriverSpace/clsDriverSpace.js"></script> 此引入不用其他的引入或配置 给echarts一个区间,此区间给定宽 阅读全文
posted @ 2019-06-29 14:52 泽泽生龙 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 不同: @requestParam 用于get请求 @requestParam("barCode" String barCode);理解为获取请求参数中barCode属性的值赋给barCode字段; 如果参数中没有barCode属性,则会报异常 @requestBody 用于post请求 请求获得一 阅读全文
posted @ 2019-06-27 17:02 泽泽生龙 阅读(445) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 18 下一页