Django 管理,自定义视图错误:以 10 为基数的 int() 的文字无效

发布于 2024-08-03 20:23:13 字数 665 浏览 4 评论 0原文

我正在尝试在 Django 管理中创建自定义视图。我正在从这个网站阅读简单的 Django 管理预览< /a>,但我有一个问题:

ValueError: invalid literal for int() with base 10: '13/preview'

这是我的 url.py:

url(r'^admin/diligencias/diligencia/(?P<object_id>\d+)/preview/$','preview'),

这是我的 view.py:

@staff_member_required
def preview(request, object_id):
   return object_detail(request, object_id=object_id,queryset=Diligencia.objects.all(), template_object_name = 'diligencia', )

这个错误是什么意思?

I'm trying to make a custom view in Django admin. I'm reading from this site, Simple Django Admin Preview, but I have a problem:

ValueError: invalid literal for int() with base 10: '13/preview'

Here is my url.py:

url(r'^admin/diligencias/diligencia/(?P<object_id>\d+)/preview/

Here is my view.py:

@staff_member_required
def preview(request, object_id):
   return object_detail(request, object_id=object_id,queryset=Diligencia.objects.all(), template_object_name = 'diligencia', )

What does this error mean?

,'preview'),

Here is my view.py:

What does this error mean?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

落叶缤纷 2024-08-10 20:23:14

加布里埃尔所说的是不正确的。我的猜测是问题在于您的视图位于 URLConf 中其他管理视图之后,因此该 URL 被 Django amdin 使用的“13/preview”可能是有效 PK 的包罗万象的视图捕获,因此您应该将此 URL 移至其他管理 URL 之上。

What Gabriel says is incorrect. My guess is the problem is that your view is after the other admin views in the URLConf, therefore this URL gets caught by a catchall one the Django amdin uses the "13/preview" could be a valid PK, therefore you should move this URL above the other admin ones.

琉璃梦幻 2024-08-10 20:23:14
def importnum():
    n1 = int(raw_input ("enter 1st number?"))
    n2 = int(raw_input ("enter 1st number?"))
    return n1+n2

def main():
    n3=importnum()
    print n3*1/2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

def importnum():
    n1 = int(raw_input ("enter 1st number?"))
    n2 = int(raw_input ("enter 1st number?"))
    return n1+n2

def main():
    n3=importnum()
    print n3*1/2
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

空城仅有旧梦在 2024-08-10 20:23:13

该请求不是由该 URLconf 接收,而是由默认管理视图接收,该视图期望应用程序/模型之后的所有内容都是主键的整数值。

您可能需要将您的 URL 在 URL 列表中移到更高的位置,以便它位于包含管理 URL 的 URL 之前。

The request isn't being picked up by that URLconf, but by the default admin view, which expects everything after the app/model to be the integer value of the primary key.

You may need to move your URL higher in the list of URLs, so that it comes before the one that includes the admin urls.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文