码迷,mamicode.com
首页 > 其他好文 > 详细

实现搜索功能(2017.12.19)

时间:2017-12-19 12:19:55      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:text   inpu   png   layer   width   data-   from   order   detail   

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)

标签:text   inpu   png   layer   width   data-   from   order   detail   

原文地址:http://www.cnblogs.com/laidaili/p/8064020.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!