svn 不提交忽略文件/目录 .idea *.iml target 在svn根目录空白点击右键菜单TortoiseSVN->PropertiesNew->Other选择svn:global-ignoresglobal代表全局,子目录会继承这个忽略配置输入要忽略的文件idea的配置文件 日志文件 编译目录都忽略target.idea.settings.project*.iml*.log.classpath直接点击ok提交根目录会增加忽略配置下次提交就不会出现已经忽略的目录及文件...
JS实现数字千位符格式化 function toThousands(num) { return (num || 0).toString().replace(/(\d)(?=(?:\d{3})+$)/g, '$1,');}
vue 全局方法(单个和多个方法) 一、单个方法新建goBack.js var goBack = function() { xxx}export default goBack; main.js中引入并定义 import goBack from '../static/js/goBack';Vue.prototype.$back = goBack; //用$与组件内自定义的函数区分,其他符号也可以 组件中使用 go: function() { this.$back(); ..
查看Cloudera CDH各组件版本 Cloudera Enterprise 5.x Release Notes https://www.cloudera.com/documentation/enterprise/release-notes/topics/cdh_vd_cdh5_maven_repo_516x.htmlApache ZooKeeper 3.4.5-cdh5.16.1Apache Hadoop 2.6.0...
moment.js时间处理 //获取当天console.log(moment().startOf('day').format('YYYY-MM-DDHH:mm:ss'));//获取当天毫秒console.log(moment().startOf('day').valueOf());//获取7天前console.log(moment().add('day...
springboot websocket带参数 java 后台:@OnOpen public void onOpen(Session session, @PathParam("id") long id, @PathParam("name") String name) throws Exception { this.session = session; System.out.println(this....
spring security 相关链接--持续更新 Spring Security 工作原理概览:https://blog.csdn.net/u012702547/article/details/89629415https://www.jianshu.com/p/0c54788c94f3spring security csrf:https://blog.csdn.net/yjclsx/article/details/80...
html5语音 https://www.jianshu.com/p/92dec635f6c5https://blog.csdn.net/github_39457740/article/details/90245954https://www.jb51.net/html5/673559.htmlhttps://blog.csdn.net/sijaycheng/article/detail...
postgresql 插入图片 CREATE OR REPLACE FUNCTION bytea_import(p_path text, p_result out bytea) LANGUAGE plpgsql AS $$DECLARE l_oid oid; rec record;BEGIN p_result := ''; select lo_import(p_path) into l...
springboot 2.0 配置websocket maven:<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId></dependency><dependency> ...
vue js 数字动态增加效果 <template><divclass="test-wrapper"><span>{{count}}</span></div></template><script>exportdefault{name:'test',data(){retu...