Django 设置错误

发布于 2024-08-26 04:12:12 字数 119 浏览 5 评论 0原文

如何在 Window Xp 和 Ubuntu 操作系统中设置 Django 我完成了连接数据库的步骤以及连接到管理员的一些问题。 我通过阅读电子书来做到这一点并做到这一点..所以对我来说有任何简单的步骤.. 请分享所有想法。

How can I set up Django in Window Xp and Ubuntu OS
I finished the step for connection with Database and some problem with connect to admin..
I do it from reading ebook and do it..So there is any easy steps for me..
Please share all idea.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

还给你自由 2024-09-02 04:12:12

你看过 Brett Hayden 的 关于实用 Django 项目的笔记吗?它包含对第二版(针对 Django 1.*)中出现的错误的更正,并填充了缺失的信息。

),它们是:

from django.contrib import admin
admin.autodiscover()

(r'^admin/doc/', include('django.contrib.admindocs.urls')),

至于取消注释 urls.py 中的行以获取 Django admin(即删除开头的哈希符号:#

(r'^admin/', include(admin.site.urls)),

另外,在 settings.py 中,您需要添加:

'django.contrib.admin',

到列表中

INSTALLED_APPS

最后,如果您需要它,Phil Gyford 已将 Bitbucket 上第二版的完成代码

Have you seem Brett Hayden's notes on Practical Django Projects? It contains corrections to errors that crept into the 2nd edition (for Django 1.*) and fills in the missing information.

As for uncommenting the lines in urls.py to get Django admin (i.e. remove the hash symbol at the start: #), they're the ones that read:

from django.contrib import admin
admin.autodiscover()

and

(r'^admin/doc/', include('django.contrib.admindocs.urls')),

and

(r'^admin/', include(admin.site.urls)),

plus, in settings.py you need to add:

'django.contrib.admin',

to the list

INSTALLED_APPS

Finally, if you need it, Phil Gyford has put the finished code from the 2nd edition on Bitbucket.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文