gpt4 book ai didi

python - Django 模板语法错误

转载 作者:行者123 更新时间:2023-11-30 23:57:12 24 4
gpt4 key购买 nike

我收到一个 TemplateSyntaxError,这只发生在我的开发服务器上,但在本地 django 测试服务器上运行良好。

这是错误

Caught SyntaxError while rendering: invalid syntax (urls.py, line 1)

和 html:

<li><a href="{% url plan.views.profile %}">Plan Details</a></li>

这是个人资料 View :

@login_required
def profile(request):
...

这是回溯:

Traceback:
File "/django/lib/python2.5/django/core/handlers/base.py" in get_response
100. response = callback(request, *callback_args, **callback_kwargs)
File "/django/lib/python2.5/django/contrib/auth/decorators.py" in _wrapped_view
25. return view_func(request, *args, **kwargs)
File "/django/myapp/plan/views.py" in profile
121. }, context_instance=RequestContext(request) )
File "/django/lib/python2.5/django/shortcuts/__init__.py" in render_to_response
20. return HttpResponse(loader.render_to_string(*args, **kwargs), **httpresponse_kwargs)
File "/django/lib/python2.5/django/template/loader.py" in render_to_string
186. return t.render(context_instance)
File "/django/lib/python2.5/django/template/__init__.py" in render
173. return self._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
167. return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
125. return compiled_parent._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
167. return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
62. result = block.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/loader_tags.py" in render
139. return self.template.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
173. return self._render(context)
File "/django/lib/python2.5/django/template/__init__.py" in _render
167. return self.nodelist.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
253. return self.nodelist_false.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
253. return self.nodelist_false.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
251. return self.nodelist_true.render(context)
File "/django/lib/python2.5/django/template/__init__.py" in render
796. bits.append(self.render_node(node, context))
File "/django/lib/python2.5/django/template/debug.py" in render_node
72. result = node.render(context)
File "/django/lib/python2.5/django/template/defaulttags.py" in render
366. url = reverse(self.view_name, args=args, kwargs=kwargs, current_app=context.current_app)
File "/django/lib/python2.5/django/core/urlresolvers.py" in reverse
350. *args, **kwargs)))
File "/django/lib/python2.5/django/core/urlresolvers.py" in reverse
271. possibilities = self.reverse_dict.getlist(lookup_view)
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_reverse_dict
193. self._populate()
File "/django/lib/python2.5/django/core/urlresolvers.py" in _populate
173. for name in pattern.reverse_dict:
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_reverse_dict
193. self._populate()
File "/django/lib/python2.5/django/core/urlresolvers.py" in _populate
162. for pattern in reversed(self.url_patterns):
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_url_patterns
243. patterns = getattr(self.urlconf_module, "urlpatterns", self.urlconf_module)
File "/django/lib/python2.5/django/core/urlresolvers.py" in _get_urlconf_module
238. self._urlconf_module = import_module(self.urlconf_name)
File "/django/lib/python2.5/django/utils/importlib.py" in import_module
35. __import__(name)

我检查了我的 urls.py 文件,一切正常。第一行是:

from django.conf.urls.defaults import *

最佳答案

在你的 urls.py 中通过 url 函数使用命名 url。

urlpatterns = patterns('your_app.views',
url(r'^somehiing/$', 'your_view_function', name='my_view'),
)

然后在您的模板中使用 {% url my_view %}

如果没有帮助,请将您的 urls.py 粘贴到此处 - 也许这只是一些微小的语法错误。

关于python - Django 模板语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3807401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com