摘要:
1 Field 2 required=True, 是否允许为空 3 widget=None, HTML插件 4 label=None, 用于生成Label标签或显示内容 5 initial=None, 初始值 6 help_text='', 帮助信息(在标签旁边显示) 7 error_message 阅读全文
摘要:
1 CACHES = { 2 'default': { 3 'BACKEND': 'django.core.cache.backends.filebased.FileBasedCache', 4 'LOCATION': os.path.join(BASE_DIR,'cache') 5 } 6 } 7 阅读全文
摘要:
1 1、请求周期 2 url> 路由 > 函数或类 > 返回字符串或者模板语言? 3 4 Form表单提交: 5 提交 -> url > 函数或类中的方法 6 - .... 7 HttpResponse('....') 8 render(request,'index.html') 9 redirec 阅读全文
摘要:
1、Django请求的生命周期 路由系统 -> 试图函数(获取模板+数据=》渲染) -> 字符串返回给用户 2、路由系统 /index/ -> 函数或类.as_view() /detail/(\d+) -> 函数(参数) 或 类.as_view()(参数) /detail/(?P\d+) ->... 阅读全文
摘要:
一 路由系统 URL 1 url(r'^index/',views.index) url(r'^home/', views.Home.as_view()) 2 url(r'^detail-(\d+).html',views.detail),#动态路由 views.py def detail(requ 阅读全文
摘要:
由于内容众多 直接使用 git 链接 : https://github.com/uge3/hosts_masg主机管理WEB页面使用 SQLALchemy 主机管理(8列) ip 用户表: 用户名 密码 功能: 1 管理员登陆 用户登陆 2 管理员后台页面 -查看所有主机信息(4列) -查看详细信息 阅读全文
摘要:
django 模块 一 安装: pip3 install django 或 python -m pip install django 二 添加环境变量 相关命令: django 创建工程目录功能 name -name #整个程序进行配置目录 --init --settings #配置文件 --url 阅读全文
摘要:
定义正则表达式 /.../ 用于定义正则表达式 /.../g 表示全局匹配 /.../i 表示不区分大小写 /.../m 表示多行匹配 JS正则匹配时本身就是支持多行,此处多行匹配只是影响正则表达式^和$,m模式也会使用^$来匹配换行的内容) 方法:1、 test -判断字符串是否符合规定的正则 2 阅读全文
摘要:
详细代码: 1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>编辑框功能</title> 6 7 <style type="text/css"> 8 /*顶部菜单*/ 9 .pag-head 阅读全文
摘要:
jQuery http://jquery.cuishifeng.cn/ 相当于js的模块,类库 DOM/BOM/JavaScript的类库 一、查找元素 jQuery 选择器 直接找到某个或者某个标签 1 1.id 2 $('#id') 3 2.class 4 $('.p') 5 3.标签 6 $( 阅读全文