如何影响 django for 循环中的各个条目?

How can I affect individual entries in a django for loop?

我在 Django 中创建了一个 for 循环,用于显示用户上传的文章。对于长文章,我会将文本截断为最大长度为 150 个字符,但希望读者可以选择使用 jquery 函数扩展文本,方法是单击 'read more'。 这是我的模板:

{% for post in posts %}
    {% if post.content|length > 150 %}
        <p class="half-content">{{ post.content|truncatechars:150 }}<a href="javascript:void();" class="show-hide-btn">read more</a></p>
        <p class="full-content" style="display: none;">{{ post.content }}</p>
    {% else %}
        <p>{{ post.content }}</p>
    {% endif %}
{% endfor %}

这是我的 jquery 函数:

$(document).ready(function(){
    $(".show-hide-btn").click(function(){
        $(".half-content").hide();
    });
});
$(document).ready(function(){
    $(".show-hide-btn").click(function(){
        $(".full-content").show();
    });
});

它按我希望的方式工作,除了 'read more' link 正在展开页面上的所有文章,而不仅仅是具有适当主键的文章。我知道我需要在我的代码中的某个地方包含 {{ post.id }},但到目前为止我尝试的一切都没有效果。

试试这个,

{% for post in posts %}
    {% if post.content|length > 150 %}
        <p class="half-content" id="half-{{post.id}}">{{ post.content|truncatechars:150 }}<a data-id="{{post.id}}" href="javascript:void();" class="show-hide-btn">read more</a></p>
        <p class="full-content" id="full-{{post.id}}" style="display: none;">{{ post.content }}</p></div>
    {% else %}
        <p>{{ post.content }}</p>
    {% endif %}
{% endfor %}


<script>
    $(document).ready(function(){
        $(".show-hide-btn").click(function(){
            var id = $(this).data("id");
            $("#half-"+id).hide();
            $("#full-"+id).show();
        });
    });
</script>