Django 系列博客(三)

来源:https://www.cnblogs.com/zuanzuan/archive/2019/01/07/10235053.html
-Advertisement-
Play Games

Django 系列博客(三) 前言 本篇博客介紹 django 的前後端交互及如何處理 get 請求和 post 請求。 get 請求 get請求是單純的請求一個頁面資源,一般不建議進行賬號信息的傳輸。 配置路由 配置視圖 配置頁面資源 post 請求 配置路由 配置視圖 配置頁面資源 前後端交互 ...


Django 系列博客(三)

前言

本篇博客介紹 django 的前後端交互及如何處理 get 請求和 post 請求。

get 請求

get請求是單純的請求一個頁面資源,一般不建議進行賬號信息的傳輸。

配置路由

from django.conf.urls import url
from django.contrib import admin

import app.views as app_views
import newApp.views as new_views
urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^$', app_views.home),
    # 路由採用正則匹配, ^以什麼開頭 $以什麼結果
    # 註: 當路由沒有子路由是,才在末尾添加$
    url(r'^index/$', app_views.index),
    url(r'login', app_views.login_action),
    url(r'^new/index/$', new_views.index)
]

配置視圖

from django.shortcuts import render, redirect

from django.http import HttpResponse

# Create your views here.

# 每一個請求,都對應一個視圖響應函數,來出現請求,完成響應
# def index(abc):
#     return HttpResponse('hello django')  # 第一個響應

import django.core.handlers.wsgi
def login_action(request):
    return render(request, 'login.html') # 第一個響應頁面

# def home(request):
#     return redirect('/index/') # 第一個重定向

def home(request):
    return render(request, 'index.html')

def index(request):
    return redirect('/')

配置頁面資源

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>主頁</title>
</head>
<body>
    <h1 style="text-align: center">app的主頁</h1>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>登錄</title>
</head>
<body>
    <h1 style="color: red">登錄</h1>
</body>
</html>

post 請求

配置路由

from django.conf.urls import url
from django.contrib import admin

from app import views

urlpatterns = [
    url(r'^admin/', admin.site.urls),
    url(r'^$', views.home),
    url(r'^index/$', views.index),
    url(r'^login/$', views.login, name='lg'),
]

配置視圖

from django.shortcuts import render, redirect
import pymysql

# Create your views here.

def home(request):
    return render(request, 'index.html')

def index(request):
    return redirect('/')

'''
def login(request):
    print(request.method)
    # 如果獲取GET請求的提交數據
    # import django.core.handlers.wsgi
    # print(type(request))
    # import django.http.request.QueryDict
    # print(type(request.GET))
    print(request.GET)
    # usr = request.GET['usr']  # 不安全
    usr = request.GET.get('usr', 'USR') # 安全, 第一個參數為數據的key, 第二個參數為預設值
    print(usr)
    pwd = request.GET.get('pwd') # 不設預設值,沒有取到值時,返回值為None
    print(pwd)
    return render(request, 'login.html')
'''

from django.http import HttpResponse

def login(request):
    if request.method == 'GET':
        stus = request.GET.getlist('stu')
        print(stus)
        return render(request, 'login.html')

    # 沒有GET分支, 發來的請求為POST
    usr = request.POST.get('usr')
    pwd = request.POST.get('pwd')
    print(usr, pwd)

    # 連接資料庫 => ORM
    conn = pymysql.connect(host='localhost', port=3306, user='root', password='root', db='django')
    cur = conn.cursor(pymysql.cursors.DictCursor)
    # cur.execute('select * from user')
    # users = cur.fetchall()
    cur.execute('select * from user where usr=%s and pwd=%s', [usr, pwd])
    res = cur.fetchone()
    print(res)
    if res != None:
        return HttpResponse('登錄成功')
    return HttpResponse('登錄失敗')

配置頁面資源

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>主頁</title>
{#    <link rel="stylesheet" href="./index.css">#}
{#    <link rel="stylesheet" href="/static/index.css">#}
{#    <link rel="stylesheet" href="/static/temp.css">#}

{#    <link rel="stylesheet" href="/ooo/index.css">#}
{#    <link rel="stylesheet" href="/ooo/temp.css">#}

{#    <link rel="stylesheet" href="/static/css/test.css">#}

    <link rel="stylesheet" href="/static/css/index.css">
</head>
<body>
    <h1 style="text-align: center">主頁</h1>
    <img src="/static/img/001.png" alt="">
</body>
</html>
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>登錄</title>
    <link rel="stylesheet" href="/static/bootstrap-3.3.7-dist/css/bootstrap.css">
    <style>
        .box {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 20px;
            height: 380px;
        }
    </style>
</head>
<body>
{#<button class="btn btn-warning"> 按鈕</button>#}
{#<div class="btn-group">#}
{#    <button class="btn btn-default btn-lg dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true"#}
{#            aria-expanded="false">#}
{#        Large button <span class="caret"></span>#}
{#    </button>#}
{#    <ul class="dropdown-menu">#}
{#        <li><a href="#">Action</a></li>#}
{#        <li><a href="#">Another action</a></li>#}
{#        <li><a href="#">Something else here</a></li>#}
{#        <li role="separator" class="divider"></li>#}
{#        <li><a href="#">Separated link</a></li>#}
{#    </ul>#}
{#</div>#}

<div class="container">
    <div class="box row col-sm-6 col-sm-offset-3">
        {# action: 沒寫 | http://localhost:8801/login | /login/ | {% url 'url_name' %} #}
        <form action="{% url 'lg' %}" method="GET">
{#            {% csrf_token %}#}
            <div class="form-group">
                <label for="usr">用戶名:</label>
                <input type="text" class="form-control" name="usr" id="usr" placeholder="請輸入用戶名">
            </div>
            <div class="form-group">
                <label for="pwd">Password</label>
                <input type="password" class="form-control" name="pwd" id="pwd" placeholder="請輸入密碼">
            </div>
            <div class="checkbox">
                <label>
                    <input name="stu" type="checkbox" value="stu1"> 學生1
                </label>
                <label>
                    <input name="stu" type="checkbox" value="stu2"> 學生2
                </label>
                <label>
                    <input name="stu" type="checkbox" value="stu3"> 學生3
                </label>
            </div>
            <button type="submit" class="btn btn-info pull-right">登錄</button>
        </form>
    </div>
</div>
{#<a href="/index/">前往主頁</a>#}
</body>
<script src="/static/bootstrap-3.3.7-dist/js/jquery-3.3.1.js"></script>
<script src="/static/bootstrap-3.3.7-dist/js/bootstrap.js"></script>
</html>

前後端交互

Django請求生命周期


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 黏包現象主要發生在TCP連接, 基於TCP的套接字客戶端往服務端上傳文件,發送時文件內容是按照一段一段的位元組流發送的,在接收方看來,根本不知道該文件的位元組流從何處開始,在何處結束. 兩種黏包現象: 1 連續的小包可能會被優化演算法給組合到一起進行發送 2 第一次如果發送的數據大小2000B接收端一次性 ...
  • 官方寫的方法干擾線是固定的 然後找到captcha/helpers.py 在這個文件添加下麵的函數 ...
  • 一.socketserver模塊 1.sockeserver的源碼流程 2.簡單的使用 socketserver服務端 socket客戶端 二.連接的合法性驗證 1.os.urandom(n)加密 os.urandom(n)是一種bytes類型的隨機生成n個位元組字元串,而且每次生成的值都不相同,再加 ...
  • 一、編寫一個簡單程式,要求數組長度為5,分別賦值10,20,30,40,50,在控制台輸出該數組的值。 package com.test; public class t01 { public static void main(String[] args) { // 靜態初始化 int i[] = n ...
  • 前言: 由於導師在我的畢設項目裡加了消息系統(本來想水水就過的..),沒辦法...來稍微研究研究吧..簡單簡單... 需求分析 我的畢設是一個博客系統 ,類似於簡書這樣的,所以消息系統也類似,在用戶的消息里包含了有:喜歡和贊、評論、關註、私信這樣的一類東西,這樣的一個系統應該包含以下的功能: 1. ...
  • 由於 Apache公司發現myBatis的分頁弊端,所以又研發出得補丁:PageHelper 中央倉庫5.1.2版連接地址: <!-- https://mvnrepository.com/artifact/com.github.pagehelper/pagehelper --><dependency ...
  • 變數 什麼是變數 變數就是變化的量,變就是變化,量用於衡量描述對象的狀態 為什麼要有變數 程式執行的本質就是一系列狀態的變化,變是程式執行的直接體現,所以我們需要有一種機制能夠反映或者說是保存下來程式執行時狀態以及狀態的變化。 變數的定義規範 #1.變數名只能是字母、數字或下劃線的組合 #2.變數名 ...
  • 寫在前面 從今天開始的幾篇文章,我將就國內目前比較主流的一些線上學習平臺數據進行抓取,如果時間充足的情況下,會對他們進行一些簡單的分析,好了,平臺大概有 ,`CSDN學院 網易雲課堂 慕課網 mongodb`裡面,如果對上述平臺造成了困擾,請見諒,畢竟我就抓取那麼一小會的時間,不會對伺服器有任何影響 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...