生成带变量的ur地址
2018-12-24 本文已影响0人
bda1a329d33d
0.1不带参数的两种方式
<a href="/hello/">跳到hello</a>
<a href="{% url 'hello' %}">跳转</a>
0.2带参数
def hello2(request,name):
return HttpResponse('hello {} 吃屁'.format(name))
<a href="/hello/">跳到hello</a>
<a href="{% url 'hello' %}">跳转</a>
def hello2(request,name):
return HttpResponse('hello {} 吃屁'.format(name))