【发布时间】:2012-01-17 12:11:37
【问题描述】:
这是我的 urls.py,目前出现错误:“元组对象没有属性正则表达式”。有什么想法吗?
from django.conf.urls.defaults import *
from ecomstore import settings
urlpatterns = patterns('ecomstore.accounts.views',
(r'^register/$', 'register', {'template_name':'registration/register.html', 'SSL':settings.ENABLE_SSL}, 'register'),
(r'^my_account/$','my_account', {'template_name':'registration/my_account.html'},'my_account'),
(r'^order_details/(?P<order_id>[-\w]+)/$', 'order_details', {'template_name':'registration/order_details.html'}, 'order_details'),
(r'^order_info//$', 'order_info', {'template_name':'registration/order_info.html'},'order_info'),
)
urlpatterns += ('django.contrib.auth.views',
(r'^login/$','login', {'template_name':'registration/login.html', 'SSL':settings.ENABLE_SSL}, 'login'),
)
【问题讨论】:
-
您需要在第二组模式上调用
patterns(),尽管我不确定这本身会导致该属性错误。