摘要: 常见面试题(https://juejin.im/post/5c91bbc96fb9a070c9759a64) 从url输入网址后发生什么 http状态码是什么,有什么用,在哪里查看,分别代表什么意思?(https://juejin.im/post/590082e6a22b9d0065be1a5c) 阅读全文
posted @ 2018-09-27 15:18 EthanCheung 阅读(169) 评论(0) 推荐(0) 编辑
摘要: vue-lazyload简单使用 npm地址:https://www.npmjs.com/package/vue-lazyload github地址:https://github.com/hilongjw/vue-lazyload 例子:http://hilongjw.github.io/vue-l 阅读全文
posted @ 2018-09-22 16:55 EthanCheung 阅读(26644) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-09-09 12:24 EthanCheung 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 盒模型水平居中 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> * { margin: 0; padding: 0; } #wrap 阅读全文
posted @ 2018-09-09 12:22 EthanCheung 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 支持跨域标签 <img src="" <link href="" <script src="" 阅读全文
posted @ 2018-08-09 15:36 EthanCheung 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 数组 对象 阅读全文
posted @ 2018-08-06 13:12 EthanCheung 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 实现简易axios /* 1.函数的返回值为promise, 成功的结果为response, 失败的结果为error 2.能处理多种类型的请求: GET/POST/PUT/DELETE 3.函数的参数为一个配置对象 { url: '', // 请求地址 method: '', // 请求方式GET/ 阅读全文
posted @ 2018-08-05 19:37 EthanCheung 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 首先安装mongodb 简单封装,在modules目录下新建db.js 使用——引入 阅读全文
posted @ 2018-08-05 15:23 EthanCheung 阅读(180) 评论(0) 推荐(0) 编辑
摘要: promise 封装Promise Promise对象是一个构造函数——https://www.cnblogs.com/lvdabao/p/es6-promise-1.html console.dir——https://www.kancloud.cn/iplaylf2/javascript/3639 阅读全文
posted @ 2018-08-01 23:57 EthanCheung 阅读(84) 评论(0) 推荐(0) 编辑
摘要: MongoDB mongoose——http://mongoosejs.com/ npm i mongoose Mongoose 通过外键与另一张表建立关联:Mongoose Populate 基本使用——https://segmentfault.com/a/1190000002727265 mon 阅读全文
posted @ 2018-08-01 16:46 EthanCheung 阅读(132) 评论(0) 推荐(0) 编辑