Django_url反向解析
2021-02-02 14:15
标签:ace clu span 传递参数 style nbsp include 应用 shu 项目url: 应用url: 视图: 模板: 连接: 显示: Django_url反向解析 标签:ace clu span 传递参数 style nbsp include 应用 shu 原文地址:https://www.cnblogs.com/wangdianchao/p/13169338.htmlpath(‘‘, include((‘app01.urls‘, ‘wdc‘), namespace=‘wdc‘)),
path(‘
def show(request, www):
return render(request, ‘show.html‘, {‘shuzi‘: www})
a href="{% url ‘wdc:show‘ 100 %}">显示a> {# 传递参数100 #}
DOCTYPE html>
html lang="en">
head>
meta charset="UTF-8">
title>显示title>
head>
body>
显示{{ shuzi }}
body>
html>