标签:图片 alt src django 传参 div inf image style
通过字典方式向url传参
url设置
urlpatterns = [ path(‘mysite/index/‘,views.index,{‘year‘:‘12344‘}) ]
views设置
def index(request,year): return HttpResponse("index%s"%year)
页面
http://127.0.0.1:8000/zong/mysite/index/
标签:图片 alt src django 传参 div inf image style
原文地址:https://www.cnblogs.com/ljf520hj/p/11704543.html