Django URL空白问题

时间:2017-03-14 15:51:43

标签: python django django-urls

我刚刚安装了 Django 1.10.3 ,并使用名为个人资料的应用程序创建了一个项目。

我在 my_site / urls.py

中添加了网址url(r'^profiles/', include('profiles.urls')),

并在 profiles / urls.py 中添加了:

urlpatterns = [
    url(r'create^$', views.create_profile, name='create_profile'),
]

但是在我的网页上我得到了这个: ^profiles/ create^$ [name='create_profile'] 由于我无法进入我的网页。请帮帮我。

我无法通过以下任何一个网址查看网页:

http://localhost:8000/profiles/create

http://localhost:8000/profiles/ create

1 个答案:

答案 0 :(得分:4)

你的正则表达式搞砸了。你有:^。删除{{1}}。