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 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.