Django Admin 的“现场查看"指向 example.com 而不是我的域

2022-01-25 00:00:00 python django django-admin

问题描述

我为我的一个模型添加了一个 get_absolute_url 函数.

I added a get_absolute_url function to one of my models.

def get_absolute_url(self):
    return '/foo/bar' 

管理站点选择它并向该对象的详细信息页面添加一个现场查看"链接(当我在那里放置一个真实的 URL 而不是/foo/bar"时).

The admin site picks it up and adds a "view on site" link to the detail page for that object (when I put a real URL there instead of "/foo/bar").

问题不是去http://localhost:8000/foo/bar,而是去http://example.com/foo/bar.

我做错了什么?


解决方案

你必须改变 默认站点 域值.

相关文章