实现搜索功能(2017.12.19)
Posted 赖黛俐
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现搜索功能(2017.12.19)相关的知识,希望对你有一定的参考价值。
2 修改base.html 中搜索输入框所在的
<form action="{{ url_for(\'search\') }}" method="get">
<input name="q" type="text" placeholder="请输入关键字">
<form action="{{ url_for(\'search\')}}" method="get" class="navbar-form navbar-left" role="search"> <div class="form-group"> <input type="text" id="q" name="q" autocomplete="off" placeholder="搜索" class="search-input" data-mounted="1">
1 准备视图函数search()
3 完成视图函数search()
获取搜索关键字
q = request.args.get(\'q’)
条件查询
qu = Question.query.filter(Question.title.contains(q)).order_by(\'-creat_time’)
加载查询结果:
return render_template(\'index.html\', question=qu)
@app.route(\'/search/\') def search(): qu=request.args.get(\'q\') ques=Question.query.filter( or_( Question.title.contains(qu), Question.detail.contains(qu) ) ).order_by(\'-creat_time\') return render_template(\'shouye.html\',questions=ques)
4 组合条件查询from sqlalchemy import or_, and_
from sqlalchemy import or_, and_
示例:
Lobby.query.filter(
or_(
and_(
Lobby.id == Team.lobby_id,
LobbyPlayer.team_id == Team.id,
LobbyPlayer.player_id == player.steamid
),
and_(
Lobby.id == spectator_table.c.lobby_id,
spectator_table.c.player_id == player.steamid
)
)
)
结果如下:
以上是关于实现搜索功能(2017.12.19)的主要内容,如果未能解决你的问题,请参考以下文章
SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML
如何在 BottomNavigationView 的片段上打开搜索界面?
html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。