Django 反向解析路由

app2.urls.py

from django.urls import path, re_path
from . import views


urlpatterns = [
    path('index', views.index, name='index'),
    path('url_reverse', views.url_reverse, name='app2_url_reverse'), #  使用reverse()方法反向解析 ,name对于视图的reverse("app2_url_reverse")
]

app2.views.py

from django.http import HttpResponse
from django.shortcuts import render
from django.urls import reverse
def index(request):
    return HttpResponse("app2 的index")

# 反向解析
def url_reverse(request):
    # 使用reverse()方法反向解析
    print('解析结果:'+ reverse("app2_url_reverse"))  #  使用reverse()方法反向解析 ,reverse("app2_url_reverse") 对应urls的 name='app2_url_reverse'
    return render(request, "2/url_reverse.html")

templates1/2/url_reverse.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<div style="color:red;font-size:24px;">url_reverse</div>

<div>
    在html中使用url标签进行反向解析
    <br>
    {%url 'app2_url_reverse'%}

</div>


</body>
</html>
相关推荐
_.Switch2 小时前
高效Django随机查询优化方案
后端·python·django
火龙谷4 小时前
django---tinymce编辑器
开发语言·python·django
codists5 小时前
《Django 5 By Example》阅读笔记:p17-p53
python·django
Spy9711 小时前
django 过滤器的执行
后端·python·django
_.Switch11 小时前
Django SQL 查询优化方案:性能与可读性分析
开发语言·数据库·python·sql·django·sqlite·自动化
Amo Xiang11 小时前
Django 2024全栈开发指南(三):数据库模型与ORM操作(上篇)
数据库·django·django-orm
codists1 天前
《Django 5 By Example》阅读笔记:p76-p104
python·django·编程人
Amo Xiang1 天前
Django 2024全栈开发指南(一):框架简介、环境搭建与项目结构
python·django
Amo Xiang1 天前
Django 2024全栈开发指南(二):Django项目配置详解
python·django
Tttian6222 天前
Vue全栈开发旅游网项目(11)-用户管理前端接口联调
前端·vue.js·django