在views.py中,我從特定用戶檢索Tweets,然後顯示在模板中,該模板可以工作。在檢索到的推文中使鏈接可點擊
但是,它只是原始文本,即鏈接不可點擊,問題是讓它們可點擊的最佳方式是什麼?
注1:我所指的鏈路可以是任何聯繫,但最有可能的Instagram鏈接
注2:如果可能的話我甚至會想#標籤是點擊。
在views.py代碼
user = twitter.User
tweets = []
statuses = t.GetUserTimeline(user)
for s in statuses:
tweets.append(s.text)
HTML:
<div class="col2">
<ol class="ol_list">
<h4>Twitter</h4>
{% for tweet in tweets %}
<li>
<p>{{tweet}}</p>
</li>
{% endfor %}
</ol>
</div>
有HTML中s.text?還是僅僅是文字? –
@RobL:只是原始文本... – holyredbeard