本文介绍了Django Admin 的“现场查看"指向 example.com 而不是我的域的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我为我的一个模型添加了一个 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
.
我做错了什么?
推荐答案
你必须改变 默认站点 域值.
这篇关于Django Admin 的“现场查看"指向 example.com 而不是我的域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!