Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Django 管理


Django 管理

Django Admin 是 Django 中一个非常棒的工具,它实际上是所有模型的 CRUD* 用户界面!

*CRUD 代表创建读取更新删除。

它是免费的,并随 Django 一起提供,可以直接使用。


入门

要进入管理用户界面,请通过导航到 /myworld 文件夹并执行以下命令来启动服务器

py manage.py runserver

在浏览器窗口中,在地址栏中键入 127.0.0.1:8000/admin/

结果应该像这样

此 URL 为什么会跳转到 Django 管理登录页面,可以在项目 urls.py 文件中找到答案

my_tennis_club/my_tennis_club/urls.py:

from django.contrib import admin
from django.urls import include, path

urlpatterns = [
    path('', include('members.urls')),
    path('admin/', admin.site.urls),
]

urlpatterns[] 列表接收访问 admin/ 的请求,并将它们发送到 admin.site.urls,这是 Django 自带的内置应用程序的一部分,包含大量功能和用户界面,其中之一就是登录用户界面。


Django 练习

通过练习测试自己

练习

要能够登录内置管理应用程序,您必须创建一个超级用户。

插入创建超级用户的缺失命令

py manage.py 

开始练习


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.