Python 은 django 와 유사 한 웹 프레임 워 크 예제 를 손 으로 작성 합 니 다.

이 글 은 Python 이 django 와 유사 한 웹 프레임 워 크 를 손 으로 쓰 는 것 을 실례 로 서술 하 였 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
django 와 비슷 한 구조 로 웹 프레임 워 크 를 작성 합 니 다.
시작 파일 코드:

from wsgiref.simple_server import make_server #    
from views import *
import urls
def routers():  #        
  URLpattern=urls.URLpattern
  return URLpattern #             
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() #           
  func=None
  for item in urlpattern: #      
    if path==item[0]:  #item[0]  #         
      func=item[1]  #item[1]        
      break
  if func: #             
    return func(environ) #      
  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): #     
  f=open("templates/alex.html","rb") #  html        
  data=f.read() #  data 
  f.close() #  
  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>
<h2>    </h2>
<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>

아래 그림 과 같이 디 렉 터 리 구조 입 니 다.

ip+prot+경 로 를 방문 하 는 것 은 html 입 니 다.기능 이 간단 합 니 다.django 에 익숙해 지기 위해 서 입 니 다.
Python 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.
본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기