如何在Sphinx文档中引用Django模型?

时间:2018-09-06 21:06:14

标签: django python-sphinx

我有{@ {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中产生正确的结果。

该怎么做?

1 个答案:

答案 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找到了。