在我的django ap中不起作用

时间:2016-01-17 03:38:11

标签: django beautifulsoup

我正在尝试使用美化来输出内容,但它似乎我甚至没有使用它。这是我的view.py

from bs4 import BeautifulSoup
import requests

def sewp(request):
r = requests.get("http://www.vladtv.com/")

soup = BeautifulSoup(r.content, 'html.parser')

content = soup.prettify()

ella = "ella"
context = {
    "content": content,
    "ella": ella,
}
return render(request, "posts/display_soup.html", context)

继承我的模板

<div class="col-sm-6 col-sm-offset-3">
<p>ll</p>
<p>{{ ella  }}</p>
<p>{{ content }}</p>

我没有得到任何错误,只是没有得到满足

如果我打印它,它在终端中已经很好了。我怎么能把它放在我的模板中。还

soup.title

在模板[]

中返回此内容

0 个答案:

没有答案