摘要:
普通的弹框: https://www.w3schools.com/howto/howto_css_modals.asp bootstra弹框: https://www.runoob.com/bootstrap/bootstrap-modal-plugin.html 阅读全文
摘要:
mysql 创建数据库 CLICK ME 创建数据库 CREATE DATABASE `DatabaseName` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; where和having的区别1 CLICK ME where和having都可 阅读全文
摘要:
权限 CLICK ME Group功能 # 测试auth模块的Group功能 from django.contrib.auth.models import Group Group.objects.get_or_create(name='user_group') user_group = Group. 阅读全文
摘要:
# settings.py ''' - 静态文件 ''' STATIC_URL STATIC_URL = '/static/' STATICFILES_DIRS = ( os.path.join(BASE_DIR, "static"), ) # TEMPLATES 设置 BASE_DIR = os. 阅读全文
摘要:
post发送数据时候的对照 获取值出现空的情况 (request.POST / request.body) 当request.POST没有值 需要考虑下面两个要求 1.如果请求头中的: Content-Type: application/x-www-form-urlencoded request.P 阅读全文
摘要:
经常会遇到这种函数写法: !function() {do something...}() ~function(){do something...}() js中可以这样创建一个匿名函数: (function(){do something...})() //或 (function(){do someth 阅读全文
摘要:
八种元素定位语法 https://www.cnblogs.com/eastonliu/p/9088301.html ''' by.py ''' class By(object): """ Set of supported locator strategies. """ ID = "id" XPATH 阅读全文
摘要:
chrome书签栏 #网页添加jquery javascript:(function(){script=document.createElement('script');script.src='https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js';d 阅读全文
摘要:
###经常看到源码里面有相关的日志操作特地整理一下 基础知识 from io import StringIO #StringIO模块主要用于在内存缓冲区中读写数据 s = StringIO() s.write("www.baidu.com\n") s.write("www.google.com") 阅读全文
摘要:
闭包:一个持有外部环境变量的函数就是闭包;闭包是一个能够访问其他函数作用域的函数 ''' 简化写法 ''' def multipliers(): return [lambda x: i * x for i in range(4)] print([m(2) for m in multipliers() 阅读全文