摘要: grant all privileges on test.* to 'root'@'%' identified by '123456'; flush privileges; 阅读全文
posted @ 2019-05-25 23:36 gaoxuerong 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 1.createStore 阅读全文
posted @ 2019-04-01 17:51 gaoxuerong 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 这个npm包高效灵活,是react和redux衔接用的,react官方就是用的这个包,来链接redux的; React Redux 6.x 需要使用React 16.4以及之后的版本; 安装命令 npm install --save react-redux 或者 yarn add react-red 阅读全文
posted @ 2019-03-24 21:49 gaoxuerong 阅读(420) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 Document 8 42 43 44 45 46 1 47 2 48 3 49 50 51 52 阅读全文
posted @ 2019-03-20 12:46 gaoxuerong 阅读(1339) 评论(0) 推荐(0) 编辑
摘要: 链接到数据库输入 ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '123456'; 这里的123456是我设置的密码 阅读全文
posted @ 2019-03-18 18:42 gaoxuerong 阅读(484) 评论(0) 推荐(0) 编辑
摘要: 前提是display:block 可以用mixin封装一下,在stylus或者less中调用 阅读全文
posted @ 2018-10-30 18:36 gaoxuerong 阅读(3684) 评论(0) 推荐(0) 编辑
摘要: 注:笔记仅用于记录自己的学习经历 参考:https://editorconfig.org/ http://www.alloyteam.com/2014/12/editor-config/ 由于编辑器之间有差异,为了更加方便的运行代码,出现了EditorConfig来统一代码格式。 EditorCon 阅读全文
posted @ 2018-09-30 14:26 gaoxuerong 阅读(262) 评论(0) 推荐(0) 编辑
摘要: jquery版本: 阅读全文
posted @ 2018-09-09 08:28 gaoxuerong 阅读(155) 评论(0) 推荐(0) 编辑
摘要: function deepCopy(obj) { if(!obj || typeof obj != 'object'){ return null } const targetObj = Array.isArray(obj)? [] : {} for(let key in obj){ if(obj.hasOwnProperty(key... 阅读全文
posted @ 2018-08-21 11:32 gaoxuerong 阅读(445) 评论(0) 推荐(0) 编辑
摘要: 1 2 3 4 5 6 7 Document 8 33 34 35 header 36 37 center 38 left 39 right 40 41 footer 42 43 阅读全文
posted @ 2018-08-19 16:53 gaoxuerong 阅读(191) 评论(0) 推荐(0) 编辑