溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python實現(xiàn)手寫一個類似django的web框架示例

發(fā)布時間:2020-10-25 02:03:58 來源:腳本之家 閱讀:162 作者:鎧甲巨人 欄目:開發(fā)技術(shù)

本文實例講述了Python實現(xiàn)手寫一個類似django的web框架。分享給大家供大家參考,具體如下:

用與django相似結(jié)構(gòu)寫一個web框架。

啟動文件代碼:

from wsgiref.simple_server import make_server #導(dǎo)入模塊
from views import *
import urls
def routers():  #這個函數(shù)是個元組
  URLpattern=urls.URLpattern
  return URLpattern #這個函數(shù)執(zhí)行后返回這個元組
def application(environ,start_response):
  print("ok1")
  path=environ.get("PATH_INFO")
  print("path",path)
  start_response('200 OK',[('Content-Type','text/html')])
  urlpattern=routers() #講函數(shù)的返回值元組賦值
  func=None
  for item in urlpattern: #遍歷這個元組
    if path==item[0]:  #item[0]就是#路徑后面的斜杠內(nèi)容
      func=item[1]  #item[1]就是對應(yīng)的函數(shù)名
      break
  if func: #如果路徑內(nèi)容存在函數(shù)就存在
    return func(environ) #執(zhí)行這個函數(shù)
  else:
    print("ok5")
    return [b"404"] #如果不存在就返回404
if __name__=='__main__':
  print("ok0")
  t=make_server("",9700,application)
  print("ok22")
  t.serve_forever()

urls.py文件代碼:

from views import *
URLpattern = (
  ("/login", login),
  ("/alex", foo1),
  ("/egon", foo2),
  ("/auth", auth)
)

views.py文件代碼:

def foo1(request): # 定義函數(shù)
  f=open("templates/alex.html","rb") #打開html 以二進制的模式
  data=f.read() #讀到data里
  f.close() #關(guān)閉
  return [data] #返回這個data
def foo2(request):
  f=open("templates/egon.html","rb")
  data=f.read()
  f.close()
  return [data]
def login(request):
  f=open("templates/login.html","rb")
  data=f.read()
  f.close()
  return [data]
def auth(request):
  print("+++",request)
  user_union,pwd_union=request.get("QUERY_STRING").split("&")
  _,user=user_union.split("=")
  _,pwd=pwd_union.split("=")
  if user=='Yuan' and pwd=="123":
    return [b"login,welcome"]
  else:
    return [b"user or pwd is wriong"]

templates目錄下的html文件:

alex.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="x-ua-compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Title</title>
</head>
<body>
<div>alex</div>
</body>
</html>

login.html

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Title</title>
</head>
<body>
<h3>登錄頁面</h3>
<form action="http://127.0.0.1:9700/auth">
  <p>姓名:<input type="text" name="user"></p>
  <p>密碼:<input type="password" name="pwd"></p>
  <p>
    <input type="submit">
  </p>
</form>
</body>
</html>

下面如圖,是目錄結(jié)構(gòu)

Python實現(xiàn)手寫一個類似django的web框架示例

訪問ip+prot+路徑 即為相應(yīng)的html,功能簡單,只是為了熟悉django

更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python Socket編程技巧總結(jié)》、《Python URL操作技巧總結(jié)》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》及《Python入門與進階經(jīng)典教程》

希望本文所述對大家Python程序設(shè)計有所幫助。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI