摘要:
1.models.py: class StudentStudyRecord(models.Model): ''' 学生学习记录 ''' student = models.ForeignKey(verbose_name="学员", to='Student',on_delete=models.CASCA 阅读全文
摘要:
8.1.安装captcha 直接安装:pip install django-simple-captcha Django自动帮我们安装了相关的依赖库six、olefile和Pillow,其中的Pillow是大名鼎鼎的绘图模块。 注册captcha 在settings中,将‘captcha’注册到app 阅读全文
摘要:
转自:https://www.cnblogs.com/robindong/p/9610057.html Robin_D 博客园 首页 新随笔 联系 订阅 管理 随笔 - 10 文章 - 0 评论 - 5 Django实战-用户注册和登陆系统 1.环境搭建和创建项目 1.环境搭建 每当我们开始一个新项 阅读全文
摘要:
INSTALLED_APPS = [ 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 阅读全文
摘要:
1 from django.urls import path 2 from . import views 3 4 urlpatterns = [ 5 #主页,用来显示类别等其他数据 6 path('',views.index), 7 # 登录 8 path('tologin/',views.tolo 阅读全文
摘要:
location.href 查看当前的url location.href http://www.baidu.com 跳转URL location.reload 重载当前页面 windows.alert('你好') 弹出提示框 document.body.coneditable=true 可对网页进行 阅读全文
摘要:
在python2 的环境中 pip install tornado==1.2.1 1.2.1版本Tornado源码少,利于了解、 1 import tornado.ioloop 2 import tornado.web 3 4 class MainHandler(tornado.web.Reques 阅读全文
摘要:
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>Title</title> 6 </head> 7 <body> 8 <form action="/upload/" method="pos 阅读全文
摘要:
Django 生命周期为: 用户请求发起对url的请求→ wsgiref模块→django中间件→django(视图url对应函数,模型数据库交互,html模版渲染)→django中间件 → wsgiref模块 →用户看到的页面。 from wsgiref.simple_server import 阅读全文
摘要:
今天2019年9月7日周六,受各大博主在此共享知识的原因,我亦开通博客园的博客,或许能分享一些东西。 顺便说一下,今天因为眼睛不正当使用(起床就看手机)引起的散光让我很不舒服。。 阅读全文