gpt4 book ai didi

django - 用户输入的链接在 Django 中显示为文本

转载 作者:行者123 更新时间:2023-12-05 08:23:56 27 4
gpt4 key购买 nike

我刚刚在使用 Django(python 版本 2.7.8,Django 版本 1.6)构建的社交网络应用程序上创建了一个用户评论系统。

评论系统一切正常,但我遇到了一个问题。如果用户在他们的评论之一中提交了指向外部站点的链接,则该链接将显示为纯文本。我希望用户提交的链接自动被视为其他用户可以点击的链接。

有人知道这个问题的潜在解决方案吗?

模型.py

class Comment(models.Model):
#Model that defines the Commenting system
created = models.DateTimeField(editable =False)
author = models.CharField(max_length = 200, editable = False)
body = models.TextField()
item = models.ForeignKey(BucketListItem)

def __unicode__(self):
return self.body

评论模板.html

<h2>Comments:</h2>
<br>
{% if comments %}
{% for comment in comments %}
<div class = "comment-div">
<h5>{% avatar comment.author 40 %}</h5>
<h5><a href = "/bucketlist/userstats/{{comment.author}}/"> {{comment.author}}</a></h5>
<h5 class ="timesince">{{ comment.created|timesince}} ago.</h3>
<br>
<br>
<p>{{comment.body}}</p>
{% if comment.author == current_user %}
<a href="/bucketlist/item/{{comment.id}}/delete-comment/"><span class = "fa fa-close"></span></a>
{% endif %}
</div>
{% endfor %}
<br>
<hr>
<br>
{% else %}
<p>There are no comments yet. Be the first to add one!</p>
{% endif %}
<h5 class = "leave-comment">Leave a Comment Here: </h5>
<br>
<form action="/bucketlist/item/{{id}}/" method = "post" role = "form">
<div class = "form-group">
{% csrf_token %}
{% for field in form %}
{{ field.errors }}
{{ field }}
<br>
{% endfor %}
<br>
<input type = "submit" value = "Submit" class="btn btn-warning">
</div>
<br>

最佳答案

你应该能够使用 the urlize template tag 来做到这一点Django 提供的。

<p>{{ comment.body | urlize }}</p>

这会将评论正文中的任何链接转换为实际的 <a>标签。

关于django - 用户输入的链接在 Django 中显示为文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27531763/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com