我希望http://example.com/view_item/4
通过传递对象ID来处理选定对象的视图,但是在尝试了每种组合后,我在线找到了将起作用的,我m仍然出现以下错误:
TypeError: view must be a callable or a list/tuple in the case of include().
这是我的路径:
url(r'^view_item/(?P<query>\w+)$','view_item')]
我已经验证了正则表达式,没有正则表达式也尝试过
答案 0 :(得分:0)
正如错误所述,我忘记了包括可调用视图。我的困惑来自学习资源的混合方法。
工作路径示例:
url(r'^view_item/(?P<query>\w+)$',view_item, 'view_item')]