摘要: 一开始用varchar(5000)上传少量图片后 经常报错Data tooLong,图片地址用二进制流 长度很大 字段类型改为longtext 最大长度4294967295个字节 (2^32-1) 通过字符串获取字节byte长度 var byte = text.replace(/[^\u0000-\ 阅读全文
posted @ 2020-07-06 19:05 ```天真有邪 阅读(3343) 评论(1) 推荐(0) 编辑
摘要: $(“#selectId”).attr("disabled", false); document.getElementById("gnome").disabled=true 无效 阅读全文
posted @ 2020-07-06 18:59 ```天真有邪 阅读(2905) 评论(0) 推荐(0) 编辑
摘要: “user.name[0]”与发出表单请求的属性名一致,可以用双引号引用起来 阅读全文
posted @ 2020-07-06 18:54 ```天真有邪 阅读(909) 评论(0) 推荐(0) 编辑
摘要: 1.bootstrapTable updaterow后数据不重写回去 2.ajax post请求 3.summernote富文本框用法总结 4.bootstrap-table一个页面两个table ,一个options怎么获取不同数据 有时间来补充 阅读全文
posted @ 2020-07-06 18:48 ```天真有邪 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 经常分不清th:field,th:value,th:text的区别 thymeleaf里的th:field等同于th:name和th:value,浏览器在解析th:field的时候,会解析成name="${th:field}"的值。 然后后台就可以接收到从前台传过来的值。而th:value可以接受到 阅读全文
posted @ 2020-07-06 18:47 ```天真有邪 阅读(6788) 评论(0) 推荐(0) 编辑
摘要: 在标签内写js,直接document.write <script type="text/javascript"> var date = new Date(); document.write( date.getFullYear()); </script> 阅读全文
posted @ 2020-07-06 18:42 ```天真有邪 阅读(252) 评论(0) 推荐(0) 编辑