摘要: 一直以来我对错误处理非常感兴趣,因为我时常试想一个程序流程到达异常的时候,能不能给用户(包括开发者)更好的体验,实战经验欠缺是空想了。 今天鬼使神差翻了下 java编程思想作者的演讲 Refs PS:不得不说一点,Github工作流真的很棒,越来越多的聪明人把自己的创作搬到上面(老师布置作业也不例外 阅读全文
posted @ 2018-05-11 10:21 chenhui7373 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 【Maven 坐标】G A V ……………………………………………………………………………………………………………………………………………… 【JDBC】 Connection 连接数据库 Statement 执行我们的查询语句 ResultSet 结果集 Test Case 测试用例 ……………… 阅读全文
posted @ 2018-05-08 22:25 chenhui7373 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 【省略细节,纠结细节的话就学不了整个复杂系统,况且现代前端开发不是仅仅就一个Bootstrap】【不学js插件只学样式】【关注使用有问题再深究】 Refs 第一步 【全局样式 normalize.css】抹除浏览器差异 ………………………………………………………………………………………………………… 阅读全文
posted @ 2018-05-02 23:12 chenhui7373 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 异步加载 load(url,[data],[callback]) 加载动画 .html("<img src='Images/Loading.gif' alt=''/>") 异步加载 JSON $.getJSON(url,cb(dataArray)) //使用each(data,function(in 阅读全文
posted @ 2018-05-02 13:41 chenhui7373 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 【兼容IE8以下没办法】【虽不是Modern Web(不建议直接操作DOM)但也是一大利器】 个人推荐书【CSS 网站实录】【JavaScript Dom 编程艺术】【刚开始学不能太纠结机制机理原理因为工具是被设计出来用的】【保持简单简洁简约的心把活干出来】 seconds 是一种极限追求,在实际开 阅读全文
posted @ 2018-04-28 21:20 chenhui7373 阅读(213) 评论(0) 推荐(0) 编辑
摘要: ……………………………………………………………………………………………………………… 【应用配置】application.yml 【port】【context-path】【datasource】【jpa】 @Value("${var}") 可取到 yml 所声明的变量 @ConfigurationP 阅读全文
posted @ 2018-04-27 23:13 chenhui7373 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 【快速学习让我不再思考太多,更多专注在一个 box 当中,上下文朝着正交方向前进~】 【Think small,】https://learnxinyminutes.com/docs/zh-cn/css-cn/ 【do big!】http://dabblet.com/ Syntax ……………………… 阅读全文
posted @ 2018-04-26 13:45 chenhui7373 阅读(240) 评论(0) 推荐(0) 编辑
摘要: https://learnxinyminutes.com/docs/zh-cn/typescript-cn/ https://www.tslang.cn/docs/handbook/basic-types.html 姊妹篇 《javascript 快速学习》http://www.cnblogs.co 阅读全文
posted @ 2018-04-25 23:08 chenhui7373 阅读(290) 评论(0) 推荐(0) 编辑
摘要: https://github.com/facebook/create-react-app npm i -g create-react-app cd <your-folder> create-react-app hello-react cd hello-react yarn start 打开 3000 阅读全文
posted @ 2018-04-25 22:44 chenhui7373 阅读(229) 评论(0) 推荐(0) 编辑
摘要: http://expressjs.com/en/4x/api.html#req.method http://expressjs.com/en/guide/routing.html 【Route paths】路由参数=路径参数 对应console.dir(req.params) 以此来支持动态URL, 阅读全文
posted @ 2018-04-23 19:37 chenhui7373 阅读(375) 评论(0) 推荐(0) 编辑