构建 Flask 应用程序,并尝试按日期/流行度更改条目/卡片的选择。我被困在这里是因为这个错误不是恒定的,它偶尔会触发。我希望我能让这个排序功能正常工作,然后看看这个问题,我认为这只是一个小错误。但是,现在错误更频繁地触发,我担心我只是在这种方法上浪费了我的时间;但我不知道。
App.py
def tester(page):
limit = 6
offset = (int(page) - 1) * limit
requested = request.args.get('fromHTMLchoice')
print(requested)
requestChoice = requested.split()
a = requestChoice[0]
b = requestChoice[1]
convertChoice = tuple(a[2:-2], int(b[:-1]))
sagas_pages = sagas.find().sort(
[convertChoice]).skip(offset).limit(limit)
return render_template(
"tester.html",
sagas_pages=sagas_pages, page=page
)
HTML
<form class="form-inline" method="GET" action="{{url_for('tester', page=1)}}">
<div class="form-group">
<div class="input-group">
<span class="input-group-addon">Please select</span>
<select name="fromHTMLchoice" class="selectpicker form-control">
<option value= "('totalLikes', -1)">Likes</option>
<option value= "('totalLikes', 1)">Dislikes</option>
<option value= "('_id', -1)">Most_Recent</option>
<option value= "('_id', 1)">Least_Recent</option>
</select>
</div>
<button type="submit" class="btn btn-default">Go</button>
</div>
</form>
繁华开满天机
相关分类