我有{@ {1}}的狮身人面像
conf.py
现在,我正在尝试引用Django模型:
intersphinx_mapping = {
'django': ('http://docs.djangoproject.com/en/dev/', 'http://docs.djangoproject.com/en/dev/_objects/'),
# 'python': ('https://docs.python.org/3.5', None),
}
它无法在HTML中产生正确的结果。
该怎么做?
答案 0 :(得分:1)
每objects.inv not available for intersphinx:
intersphinx_mapping = {
'django': ('https://docs.djangoproject.com/en/dev/',
'https://docs.djangoproject.com/en/dev/_objects/'),
}
然后在文档中,以下两种方法均可使用:
:class:`~django.forms.ChoiceField`
:class:`django.forms.ChoiceField`
我通过this search of their repo找到了。