摘要: MySql 非关系型数据库--稳定--开源 事务 逻辑上的一组操作,要么都执行,要么都不执行。 事务的ACID: 原子性(Atomicity):事务作为一个整体被执行,包含在其中的对数据库的操作要么全部被执行,要么都不执行; 一致性(Consistency):事务应确保数据库的状态从一个一致状态转变 阅读全文
posted @ 2019-09-04 14:46 梁&&鞠 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1 function openPostWindow(url, data, name) { 2 var tempForm = document.createElement("form"); 3 tempForm.id = "tempForm1"; 4 tempForm.method = "post"; 5 tempForm.action = url; 6 tempForm.target = name 阅读全文
posted @ 2019-09-04 11:24 梁&&鞠 阅读(2503) 评论(0) 推荐(0) 编辑
摘要: 跨域问题springboot 配置类加上 前端跨域,保证sessionId一致。 阅读全文
posted @ 2019-08-27 11:56 梁&&鞠 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1.跨域问题springboot 配置类加上/** * 跨域支持 * @param registry */ @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") .allow 阅读全文
posted @ 2019-08-27 11:53 梁&&鞠 阅读(182) 评论(0) 推荐(0) 编辑
摘要: //动态监听input值的变化(包括脚本改变其值)$("#projectLeader_id").on("input propertychange blur change", function () { }); 阅读全文
posted @ 2019-08-27 11:51 梁&&鞠 阅读(293) 评论(0) 推荐(0) 编辑
摘要: source 不加载js,则无法在页面中打断点。 在js中加入 //@ sourceURL=quarterEvaluation.js 阅读全文
posted @ 2019-08-27 11:49 梁&&鞠 阅读(258) 评论(0) 推荐(0) 编辑
摘要: java计算标准差思路 阅读全文
posted @ 2019-08-27 11:39 梁&&鞠 阅读(17456) 评论(3) 推荐(0) 编辑