上一页 1 2 3 4 5 6 ··· 17 下一页
摘要: 概念和区别 超文本传输协议HTTP协议被用于在Web浏览器和网站服务器之间传递信息。HTTP协议以明文方式发送内容,不提供任何方式的数据加密,如果攻击者截取了Web浏览器和网站服务器之间的传输报文,就可以直接读懂其中的信息,因此HTTP协议不适合传输一些敏感信息,比如信用卡号、密码等。 为了解决HT 阅读全文
posted @ 2017-08-01 22:51 douglasvegas 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 错误原因:安装的mongoose type检查的版本不对。 之前想当然的安装 dt~mongoose ,但是一直报错。 通过 typings search mongoose 可以发现最底下的mongoose/v3最新更新。 因此安装v3版本,再run一下,果然成功! 命令: 阅读全文
posted @ 2017-07-21 17:11 douglasvegas 阅读(749) 评论(0) 推荐(0) 编辑
摘要: 问题: require statement is not part of import statement 正确姿势: 阅读全文
posted @ 2017-07-21 11:56 douglasvegas 阅读(14586) 评论(0) 推荐(2) 编辑
摘要: 问题: xception in initAndListen: 98 Unable to create/open lock file: /data/db/mongod.lock 解决方法: $ sudo mkdir p /data/db/ $ sudo chown /data/db ``` 阅读全文
posted @ 2017-07-21 09:47 douglasvegas 阅读(218) 评论(0) 推荐(0) 编辑
摘要: ``` document.onclink=function(ev) { var oEvent=ev||event; //兼容IE和FireFox Chrome 只要一个为真就可以执行 alert(oEvent.clientX); }; ``` 阅读全文
posted @ 2017-07-14 15:17 douglasvegas 阅读(151) 评论(0) 推荐(0) 编辑
摘要: 将ts配置文件中 "target": "es2015" 阅读全文
posted @ 2017-07-12 13:11 douglasvegas 阅读(8958) 评论(0) 推荐(0) 编辑
摘要: 1.首先在第一行输入! 2.然后将光标移动到!后 3.按下tab键 4.完成 阅读全文
posted @ 2017-07-12 12:45 douglasvegas 阅读(823) 评论(0) 推荐(0) 编辑
摘要: 译自 "http://www.hacksparrow.com/node js exports vs module exports.html" Nodejs中的exports和module.exports有什么区别? 你肯定对nodejs中的 概念有所了解,如下在nodejs的模块中创建函数(假设有个 阅读全文
posted @ 2017-07-11 17:31 douglasvegas 阅读(204) 评论(0) 推荐(0) 编辑
摘要: 正确姿势添加如下解析JSON data传值换成JSON.stringify(data) 阅读全文
posted @ 2017-07-07 18:06 douglasvegas 阅读(1337) 评论(0) 推荐(0) 编辑
摘要: 依次打开 快捷键 阅读全文
posted @ 2017-07-04 16:57 douglasvegas 阅读(568) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 17 下一页