上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 2019-12-19 程序中,一等公民是指一个可以传入函数,可以从函数返回,且可以赋值给变量的值。JS函数是一等公民。 ES6, 将类设计为一等公民,允许通过多种方式使用类的特性,可以将类作为参数传入函数中。 Underscore.js ref : https://underscorejs.org/ 阅读全文
posted @ 2019-12-19 08:46 君子之行 阅读(13) 评论(0) 推荐(0)
摘要: 2019-12-18 web UI HTML emphasis n. 强调,重视,重要性。 pixel : n 像素 margin: 边距 border: 边界 padding: 衬料 阅读全文
posted @ 2019-12-18 09:00 君子之行 阅读(7) 评论(0) 推荐(0)
摘要: 2019-12-17 要实现 Bootstrap-table 动态生成 columns ref: https://blog.csdn.net/mengjavakaifa/article/details/78873531 // 通过 Object.keys(obj) 来获取对象的名称, key的数量对 阅读全文
posted @ 2019-12-17 11:03 君子之行 阅读(16) 评论(0) 推荐(0)
摘要: 2019-12-17 Chrome 开启 ES6 支持 阅读全文
posted @ 2019-12-17 09:09 君子之行 阅读(10) 评论(0) 推荐(0)
摘要: 2019-12-15 1 JS onLoad window.onload = firstFunction window.onload = secondFunction 第二个将取代第一个,因为每个事件处理函数只能绑定一条指令。 window.onload = function(){ firstFun 阅读全文
posted @ 2019-12-15 13:19 君子之行 阅读(6) 评论(0) 推荐(0)
摘要: 2019-12-11 git@github.com:CZiJun/tech-web-artDesign.git 路径 文件的引用 css 放在 head link 标签 js 放在 </body> body 结束标签之前 onClick = function(this) 会传入相当于 decoume 阅读全文
posted @ 2019-12-11 07:46 君子之行 阅读(12) 评论(0) 推荐(0)
摘要: 2019-12-06 1.subject : Java standard code https://mp.weixin.qq.com/s/MDrTKTVj0UVQetPPG6mmqA 1) 使用 BeanUtils.copyProperties(source, target) 进行两个对象的属性复制 阅读全文
posted @ 2019-12-06 10:22 君子之行 阅读(21) 评论(0) 推荐(0)
摘要: 2019-12-05 official web site : https://www.thymeleaf.org/documentation.html http://itutorial.thymeleaf.org/ ref : 1. 内联 https://www.cnblogs.com/lmsblo 阅读全文
posted @ 2019-12-05 10:52 君子之行 阅读(9) 评论(0) 推荐(0)
摘要: 2019-12-04 1> slf4j , log4j2 configuration case: solution : add slf4j-log4j12 1 <!-- slf4j --> 2 <dependency> 3 <groupId>org.slf4j</groupId> 4 <artifa 阅读全文
posted @ 2019-12-04 10:30 君子之行 阅读(11) 评论(0) 推荐(0)
摘要: 2019-12-02 Pragmatic Unit Testing 1. General Principies: 一般原则 1) Test anything that might break. 测试任何可能失败的地方 2) Test everything that does break. 测试任何已 阅读全文
posted @ 2019-12-02 10:59 君子之行 阅读(5) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 13 下一页