摘要:
标题 方法 function timetrans(date){ var date = new Date(date*1000);//如果date为10位需要乘1000 var Y = date.getFullYear() + '-'; var M = (date.getMonth()+1 < 10 ? 阅读全文
摘要:
what's the 监听端口 当程序的端口被占用时,会出现 Address already in use 的报错信息。在对网络连接或特定于应用程序的问题进行故障排除时,首先要检查的事情之一应该是系统上实际使用了哪些端口,以及哪个应用程序正在侦听特定的端口。 在 Linux 中可以使用 netsta 阅读全文