vmware 共享文件夹
摘要:参考 https://jingyan.baidu.com/article/7f766daf7866be4101e1d0ed.html 只是设置共享文件夹选项还不行,需要从安装vmware的安装路径中找到vmware tools的ios文件,安装vmware tools
阅读全文
js 字符与ascii码转换
摘要:参考 http://www.jb51.net/article/43534.htm ' '.charCodeAt(); //字符转ascii String.fromCharCode(10); //ascii转字符
阅读全文
css3 calc
摘要:参考 http://www.daqianduan.com/6183.html width : calc(100% - 40px)
阅读全文
js 事件阻止冒泡
摘要:参考 https://www.cnblogs.com/zhuzhenwei918/p/6139880.html
阅读全文
angularjs 粘贴事件
摘要:参考 http://www.jb51.net/article/89708.htm ng-paste 需要setTimeout,否则无法获取到数据
阅读全文
hibernate ORA-17059 无法转换为内部表示
摘要:参考 https://jingyan.baidu.com/article/2fb0ba40a25a2b00f2ec5fc7.html 数据库里的字段类型与Java实体类中的对应字段属性类型不匹配
阅读全文
spring jpa nativequery in与修改
摘要:参考 https://blog.csdn.net/a3025056/article/details/79022816
阅读全文
AdminLTE 侧边栏收缩时触发的事件
摘要:点击此处,会触发 expanded.pushMenu 或 collapsed.pushMenu 事件 如果需要在事件触发时编写相关逻辑,可用如下方式
阅读全文
springboot jpa sql查询与传值
摘要:public interface ARepository extends PagingAndSortingRepository<A, APK>, JpaSpecificationExecutor<A> { @Query(value="select field1, field2 from table1
阅读全文
js增减日期
摘要:参考 https://www.cnblogs.com/gmq-sh/p/5194706.html
阅读全文
thymeleaf 在js中获取message信息或获取后台属性
摘要:<script th:inline="javascript"> /*<![CDATA[*/ [[#{message1}]] [[${abc}]] /*]]>*/ </script>
阅读全文
jQuery 替换元素
摘要:参考https://www.cnblogs.com/halai/p/6868027.html http://www.w3school.com.cn/jquery/manipulation_replaceall.asp $("<div>replaceContent</div>").replaceAll
阅读全文
thymeleaf 获取sessionid
摘要:参考https://www.thymeleaf.org/doc/tutorials/3.0/usingthymeleaf.html
阅读全文
jQuery 设置/获取样式
摘要:参考 http://www.w3school.com.cn/jquery/jquery_css.asp $("#a").css("height"); $("#a").css("height", "30px");
阅读全文
springboot security 获取当前登录用户名
摘要:System.out.println(((User)SecurityContextHolder.getContext().getAuthentication().getPrincipal()).getName()); ${session.SPRING_SECURITY_CONTEXT.authent
阅读全文