1
我需要編輯Browsable API的圖標。
是否可以通過在模板中重寫api.html來實現?如何在Django REST框架中的Browsable API中編輯圖標?
我需要編輯Browsable API的圖標。
是否可以通過在模板中重寫api.html來實現?如何在Django REST框架中的Browsable API中編輯圖標?
這可以通過在api.html加入以下塊來實現
{% block style %}
{{ block.super }}
<link rel="shortcut icon" type="image/png" href="xxxx.png" />
{% endblock %}