标签:dict request ict int ref context 顺序 总结 获取参数
urlpatterns = [
path('<year>/<int:month>/<slug:day>', views.mydate),
re_path('/dict/(?P<year>[0-9]{4})/$', views.my_dict,{'month':'09'}, name='my_dict'), #year参数设置在URL地址内,month参数设置在URL地址外。
]
def my_dict(request, year, month): #通过url获取到year,month2个参数。
return render(request, 'mydict.html',{'month':month})
<a href="{% url 'my_dict' 2018 %}">2019年 {{ month }}</a>
3者之间参数的传递顺序是:url获取到的参数--->传递给视图函数views--->视图函数再render参数给模板文件。
或者反过来说:模板中的变量(参数)来自于视图函数;而视图函数需要的参数,来自于url。
标签:dict request ict int ref context 顺序 总结 获取参数
原文地址:https://www.cnblogs.com/eagleow/p/10688971.html