码迷,mamicode.com
首页 > 其他好文 > 详细

Django-C006-第三方

时间:2019-07-02 19:22:59      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:tin   path   site   服务器   shortcut   sql   request   文件配置   编辑   

 此文章完成度【1%】留着以后忘记的回顾。多写多练多思考,我会努力写出有意思的demo,如果知识点有错误、误导,欢迎大家在评论处写下你的感想或者纠错。 

【Django version】: 2.1

【pymysql version】:0.9.3

【python version】: 3.7

【Pillow version】:6.0.0

 

第三方


    常用的第三方Django模块【‘富文本编辑器’, ‘全文检索’,‘发送邮件’, ‘celery’】

部署: 

  当项目开发完成后,需要将代码放到服务器上, 这个过程称为部署,服务器上需要有一个运行代码的环境,这个环境一般使用uWSGI+Nginx 

创建项目

1.创建项目名称为test6,应用名为school

技术图片

2.检查版本File>Settings>Project:test6>Project Interpreter

技术图片

3.在test6下urls.py文件配置url到项目中,在项目下urls.py文件中配置index的url

test6/urls.py
from
django.contrib import admin from django.urls import path, re_path, include urlpatterns = [ path(admin/, admin.site.urls), re_path(r^$, include(school.urls)) ]
school/urls.py
from django.urls import re_path
from school import views

urlpatterns = [
    re_path(r^index$, views.index),
]

4.在应用下的views.py中添加index视图

from django.shortcuts import render

def index(request):
    return render(request, school/index.html)

5.在templates文件夹下创建school文件夹,并且创建一个index.html

技术图片

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>首页</title>
</head>
<body>
    <h1>congratulations</h1>
</body>
</html>

 

Django-C006-第三方

标签:tin   path   site   服务器   shortcut   sql   request   文件配置   编辑   

原文地址:https://www.cnblogs.com/Hannibal-2018/p/11122387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!