gpt4 book ai didi

python - 在 Django 中添加静态 html 页面

转载 作者:行者123 更新时间:2023-11-28 22:19:05 24 4
gpt4 key购买 nike

我想知道是否有办法在 django 中添加静态 html 页面,例如“常见问题解答”或“关于我们”页面。如果有办法请告诉我

最佳答案

我建议您使用 TemplateView对于静态页面

from django.urls import path
from django.views.generic import TemplateView

urlpatterns = [
path('about/', TemplateView.as_view(template_name="about.html")),
]

TemplateView should be used when you want to present some informationin a html page

TemplateView shouldn’t be used when your page has forms and doescreation or update of objects.

关于python - 在 Django 中添加静态 html 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50046945/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com