码迷,mamicode.com
首页 >  
搜索关键字:ade    ( 7748个结果
Crypto Exchange Security: Approaches and Trends
https://coincodex.com/article/6630/crypto-exchange-security-approaches-and-trends/ Key highlights: Centralized cryptocurrency exchanges are facing a n ...
分类:移动开发   时间:2020-06-05 15:12:46    阅读次数:215
密码学DAY2
##1.1 加密模式 加密模式:https://docs.oracle.com/javase/8/docs/api/javax/crypto/Cipher.html ECB ECB : Electronic codebook, 电子密码本. 需要加密的消息按照块密码的块大小被分为数个块,并对每个块进 ...
分类:其他好文   时间:2020-06-05 14:42:42    阅读次数:65
js中的事件对象
1.如何绑定事件 事件是发生在 HTML 元素上的事情,可以被javascript侦测到。如:div标签,点击这个div时,会在标签上发生一个点击事件 在dom0的标准中js动态绑定事件需要-元素.on事件名 = function(){ };或者是function(){};元素.事件名 = fn; ...
分类:Web程序   时间:2020-06-05 10:20:20    阅读次数:92
cors中间件
cors中间件 from django.utils.deprecation import MiddlewareMixin class CorsMiddleWare(MiddlewareMixin): def process_response(self,request,response): if re ...
分类:其他好文   时间:2020-06-04 19:42:39    阅读次数:75
Spring Security
Spring Security Spring家族的安全管理框架,竞品是Shiro。 虽然Security功能比Shiro强大,但Spring Boot出现之前,Security的整合比较麻烦,使得大部分项目选择使用Shiro。 Spring Boot对于Spring Security提供了自动化配置 ...
分类:编程语言   时间:2020-06-04 14:04:37    阅读次数:79
Python学习之路
###Django框架 Django 进阶8 Django 进阶9 ...
分类:编程语言   时间:2020-06-04 13:47:54    阅读次数:70
Django---进阶4
CBV源码剖析 # 你自己不要修改源码 除了bug很难找 # 突破口在urls.py url(r'^login/',views.MyLogin.as_view()) # url(r'^login/',views.view) FBV一模一样 # CBV与FBV在路由匹配上本质是一样的 都是路由 对应 ...
分类:其他好文   时间:2020-06-04 13:45:21    阅读次数:51
elementui的table在ie下宽度不能100%显示的问题
加上两行代码就行: .el-table__header{ width: 100% !important; } .el-table__body{ width: 100% !important; } ...
分类:其他好文   时间:2020-06-04 10:45:47    阅读次数:325
7 实例1:京东商品页面的爬取
1 """实例1:京东商品页面的爬取""" 2 3 4 import requests 5 6 url = "https://item.jd.com/100012545852.html" 7 try: 8 # 更改头部信息 9 kv = {'user-agent': 'Mozilla/5.0'} 1 ...
分类:其他好文   时间:2020-06-04 10:21:02    阅读次数:95
Centos7.6安装Docker安装
系统环境准备 cat /etc/centos-release(最小化安装) CentOS Linux release 7.6.1810 (Core) uname -r (内核要在3.10以上) 1.1.10.0-957.el7.x86_64 getenforce Disabled systemctl ...
分类:其他好文   时间:2020-06-04 01:35:10    阅读次数:315
7748条   上一页 1 ... 57 58 59 60 61 ... 775 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!