0

我在 Eclipse 中创建了一个 DJango 项目。后来我添加了一个新应用程序(R-CLick Project folder ---> DJANGO ---> Create application (manage.py startapp)

我给它命名Super

然后我再次创建了另一个新应用程序(使用上述相同的步骤),并将其命名为Human.

现在在我的项目中,我创建了 2 个应用程序(在 eclipse 中它显示为 2 个包)。

admin.py我在包内有一个文件Super

代码如下:

from django.contrib import admin
from Super.models import People
from Human.models import NormalHuman

admin.site.register(People)
admin.site.register(NormalHuman)

我什至在文件中注册了 2 个新应用程序Settings.py

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.sites',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'Super',
    'Human',
    # Uncomment the next line to enable the admin:
     'django.contrib.admin',
    # Uncomment the next line to enable admin documentation:
    # 'django.contrib.admindocs',
)

我还对urls.py文件进行了更改。

from django.conf.urls import patterns, include, url

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
from Human.models import NormalHuman
admin.autodiscover()

urlpatterns = patterns('',

    # Uncomment the next line to enable the admin:
    url(r'^admin/', include(admin.site.urls)),
    url(r'^normal/', NormalHuman),
)

我想解决的问题:

1.)重新启动服务器后,当我尝试导航到 url127.0.0.1:9095/normal时,我最终出现 404

2.) 我需要添加NormalHuman到管理页面,所以我可以访问它的内容。

4

1 回答 1

0

您已经注册了管理员网址,因此您无需添加

url(r'^normal/', NormalHuman),

查看 NormalHuman 模型的内容。

只是简单地打

127.0.0.1:9095/admin/human/normalhuman
查看 NormalHuman 模型的内容。

于 2013-10-23T07:14:39.777 回答