码迷,mamicode.com
首页 > Web开发 > 详细

django -- url 的 name 属性

时间:2017-03-07 19:12:10      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:response   input   http   body   set   定义   text   pos   image   

在html的form中使用给url定义的name值,可以在修改url时不用在修改form的src。

 

urls.py

from django.conf.urls import url
from mytest import views

urlpatterns = [
    # url(r‘^admin/‘, admin.site.urls),
    url(r‘^index/‘, views.index, name=‘mysite‘),
views.Index.as_view()),
]

views.py

from django.http import HttpResponse
from django.shortcuts import render


def index(req):
    if req.method == ‘POST‘:
        print(‘method is :‘ + req.method)
    elif req.method == ‘GET‘:
        print(‘method is :‘ + req.method)
    return render(req, ‘index.html‘)

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>index</title>
</head>
<body>
    <form action="{% url ‘mysite‘ %}" method="post">
        <input type="text" name="A" />
        <input type="submit" name="b" value="提交" />
    </form>
</body>
</html>

由上述代码可以看到url的name使用方法。

技术分享

 

django -- url 的 name 属性

标签:response   input   http   body   set   定义   text   pos   image   

原文地址:http://www.cnblogs.com/wumingxiaoyao/p/6516006.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!