摘要:
//传入时间戳function getLocalTime(nS) { return new Date(parseInt(nS) * 1000).toLocaleString() } //--> 执行结果:2020年4月4日 17:30:43 //传入时间戳 function getLocalTime 阅读全文
摘要:
https://www.cnblogs.com/wj-1314/p/11225768.html 阅读全文
摘要:
http://www.nsfocus.net/index.php?act=sec_bug 安全漏洞 阅读全文
摘要:
说明: 本人因为学习,刚好想到了此酷..,所以有任何违法的事情 或者其它,请联系本人,,删除本贴,特此公开:,,本人能力有限,不愿承担任何风险 源由: 前些天,看到首页有推 一个帖子名为[某短信轰炸]的例子,所以我也跟着酷狗了来看一发,此注册的例子 工具: js调试工具 抓包工具 谷哥浏览器 1 : 阅读全文
摘要:
https://github.com/hellobajie/AES-of-JavaScript 此为js的 AES加密方式,两个加密文档,可当做扣js必备 阅读全文
摘要:
初步安装、与搭建 https://www.cnblogs.com/yanxulan/p/8978732.html 如何搭建一个vue项目 安装 nodejs,,, npm i == npm install 默认安装当前目录下package.json内的【‘devDependencies’,‘depe 阅读全文
摘要:
1 a. 认证 - 仅使用: from django.views import View from rest_framework.views import APIView from rest_framework.authentication import BasicAuthentication ... 阅读全文
摘要:
1 restful 规范(建议) 基于FbV def order(request): if request.method=="GET": return HttpResponse('得到订单') if request.method=="POST": return ... 阅读全文
摘要:
1 根据关键字实现数组的过滤 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="css3.3.7/bootstrap.cs 阅读全文
摘要:
MVVM开发思想图(图片可能会被缩小,请右键另存查看,图片来源于网络) 定义基本Vue代码结构 1 v-text,v-cloak,v-html命令 默认 v-text没有闪烁问题,但是会覆盖元素中原本的内容,插值表达式只会替换自己的占位符, <!DOCTYPE html> <html> <head> 阅读全文