摘要: cookie失效 阅读全文
posted @ 2018-05-13 14:22 Archer-Fang 阅读(738) 评论(0) 推荐(0) 编辑
摘要: 原文:https://github.com/alsotang/node-lessons/tree/master/lesson16 读别人源码教程的时候,看到了这个,觉得写的很透彻,转。 众所周知,HTTP 是一个无状态协议,所以客户端每次发出请求时,下一次请求无法得知上一次请求所包含的状态数据,如何 阅读全文
posted @ 2018-05-13 14:17 Archer-Fang 阅读(247) 评论(0) 推荐(0) 编辑
摘要: JS数字千分: 1.例子:1000 >1,000 2.实现如下: salesToFormat: function (num) { var num = (num || 0).toString(), result = ''; while (num.length > 3) {//拿掉num的最后三位给re 阅读全文
posted @ 2018-05-13 14:13 Archer-Fang 阅读(207) 评论(0) 推荐(0) 编辑
摘要: JS的时间差换算(String to 标准的时间格式) 1.字符串到标准时间格式: 字符串: var time1="2018-05-11 00:00:00" var time2="2018-05-12 00:00:00" 转到标准时间格式: time1 = new Date(time1); time 阅读全文
posted @ 2018-05-13 14:10 Archer-Fang 阅读(438) 评论(0) 推荐(0) 编辑