实现搜索功能

Posted 018林彬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实现搜索功能相关的知识,希望对你有一定的参考价值。

  1. 准备视图函数search()
  2. 修改base.html 中搜索输入框所在的
    1. <form action="{{ url_for(‘search‘) }}" method="get">
    2.    <input name="q" type="text" placeholder="请输入关键字">

  3. 完成视图函数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)

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

        )

    )

)

https://stackoverflow.com/questions/13370993/sqlalchemy-query-and-or-issue

@app.route(‘/search/‘)
def search():
    cha=request.args.get(‘q‘)
    chaxun=Wenda.query.filter(
        or_(
            Wenda.title.contains(cha),
            Wenda.detail.contains(cha)
        )).order_by(‘-creat_time‘)
    return render_template(‘moban.html‘,wenda=chaxun)

 

以上是关于实现搜索功能的主要内容,如果未能解决你的问题,请参考以下文章

IOS开发-OC学习-常用功能代码片段整理

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

如何实现onTextChangedListenerItem来搜索RecyclerView中的项目

具有相同功能的活动和片段

Notepad++编辑器——Verilog代码片段直接编译

JavaScript实用功能代码片段