Django使用locals() 函數的方法介紹

不言
發布: 2019-04-15 11:03:11
轉載
3864 人瀏覽過

這篇文章帶給大家的內容是關於Django使用locals() 函數的方法介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。

locals() 函數會以字典類型傳回目前位置的全部局部變數。

在views.py 中加入

from django.shortcuts import render,HttpResponse,render_to_response
import datetime
from blog import models

def index(req):
    if req.method=="POST":
        username = req.POST.get("username")
        pwd = req.POST.get("password")

        print(username)
        print(pwd)

        if username == "klvchen" and pwd=="123":
            return HttpResponse("登录成功")
    #return render(req, "login.html")
    kl = "you are welcome"
    a = "hello"
    b = "world"
    c = "what"
    return render_to_response("new.html", locals())
登入後複製

在templates 新增new.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1> {{ kl }}</h1>
<h2> {{ a }}</h2>
<h3> {{ b }}</h3>
<h4> {{ c }}</h4>
</body>
</html>
登入後複製

在urls.py 中記得新增路徑

url(r"index", views.index),
登入後複製

效果:
Django使用locals() 函數的方法介紹

以上是Django使用locals() 函數的方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:segmentfault.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板