我想單擊/circle
頁面中的藍色div,將值「niloofar」發送到/final
,輸出必須是** niloofar **
,但它不起作用。django POST數據不起作用
我該如何編輯它? 我想通過隱藏輸入發送值。
views.py:
from django.shortcuts import render
def circle(request):
return render(request, 'circle.html')
def final(request):
matn = request.POST.get("title", "")
return render(request, 'final.html', {'matn': matn})
circle.html:
<html>
<head>
<style>
div {
width:100px;
height:100px;
background:lightblue;
}
</style>
</head>
<body>
<a href="/final">
<div></div>
<input type="hidden" name="title" value="niloofar">
</a>
final.html:
** {{ matn }} **
urls.py:
from django.conf.urls import include, url
from secondv.views import circle, final
urlpatterns = [
url(r'^circle/', circle),
url(r'^final/', final),
]
好吧,你在哪裏定義'message'? *什麼*不起作用?錯誤?結果無效? – Sayse
我編輯了我的問題。 – niloofar
只有該值不會出現錯誤,只會啓動。 – niloofar