私は実際にはフラスコテンプレートのforループを印刷したいと思いますが、別の方法を使用しましたが、HTMLページに何も表示されず、Pythonコードが正しく機能していますjinjaでそれを実装する方法を知っている。フラスコ内のループがhtmlページに表示されない
Views.py
@app.route('/results', methods=['POST', 'GET'])
def results():
keyword = {'keyword': request.args.get('keyword')} # First Method
keyword = request.form['keyword'] # Second Method
num_tweets=5
for tweet in tweepy.Cursor(api.search,q=str(keyword)+
" -filter:retweets",
result_type='recent',
lang="en").items(num_tweets):
clean = re.sub(r"(?:@\S*|#\S*|http(?=.*://)\S*)", "", tweet.text)
result = cool.api(clean)
return render_template('pages/results.html')
Results.html
<body>
<div>
{{ result }}
{{ clean }}
</div>
</body>