实现搜索功能

  1. 准备视图函数search()
    @app.route('/search/')
    def search():
       pass
  2. 修改base.html 中搜索输入框所在的
    1. <form action="{{ url_for('search') }}" method="get">
    2.    <input name="q" type="text" placeholder="请输入关键字">
<form action="{{ url_for('search') }}" method="get">
    <img src="{{ url_for('static',filename='image/5.jpg') }}"style="height: 40px;width: 45px; ">
    <a href="http://www.iqiyi.com/">爱奇艺官网</a>
    <a href="http://www.aiqiyibofangqi.com/">APP下载</a>
    <a href="{{ url_for("wenda") }}">用户问答</a>
    <a href="{{ url_for("shouye") }}">首页</a>
    <input name="q" type="text" placeholder="请输入搜索内容">
    <input type="submit" value="搜索">
</form>
  1. 完成视图函数search()
    1. 获取搜索关键字
      q = request.args.get('q’)
    2. 条件查询
      qu = Question.query.filter(Question.title.contains(q)).order_by('-creat_time’)
    3. 加载查询结果:
      return render_template('index.html', question=qu)

  2. 组合条件查询
    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
        )
    )
)

@app.route('/search/')
def search():
    qu=request.args.get('q')
    ques=Question.query.filter(
        or_(
            Question.title.contains(qu),
            Question.detail.contains(qu),
        )
    )
    return render_template('shouye.html',questions=ques)

 

https://sta

posted on 2017-12-20 16:00  079刘洁婷  阅读(160)  评论(0编辑  收藏  举报

导航