我正在使用评论系统,现在,我想重新编写来自 url 评论的段并附加一个符号 #,我想将页面部分移动到评论列表中,精确到最后一个评论用户<a name=#{{comment.id}}?> username </a>
发表评论时,我使用 next 重定向用户:
{% get_comment_form for object as form %}
<form action="{% comment_form_target %}" method="POST">
{{ form }}
<input type="hidden" name="next" value="{{ object.get_absolute_url }}" />
<input type="submit" name="preview" class="submit-post" value="Preview"></td>
</form>
但是在 Django Doc 中,不要对 rewrite 或customizer 评论重定向/ url 只字不提
任何的想法?
谢谢