Jinja Flask模板化SQLAlchemy显示多个结果

时间:2018-07-09 10:56:34

标签: python sql sqlalchemy

我正在尝试创建一个简单的搜索工具,使用Flask,Jinja和SQLAlchemy搜索现有的Postgres表。 一切正常,除了我搜索时,页面上显示的结果是这样的: Flask Results

请注意,如果我仅使用Postgres / pgadmin进行相同的搜索,将会显示出来。它返回多个随机结果。 以下是使用Pgadmin返回的内容:

enter image description here

有什么想法吗?我的代码在下面。

  

App.py

from flask import Flask, render_template, request
from sqlalchemy import create_engine
from sqlalchemy import text
from flask_sqlalchemy import SQLAlchemy

app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI']='xxx://xxx:xxx@xxx:xxx/xxx'
engine = create_engine('postgresql+psycopg2://xxx:xxx@xxxr:xxx/xxx')
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
db=SQLAlchemy(app)

@app.route('/', methods=['GET', 'POST'])
def homepage():
    if request.method == 'POST':
        jn = request.form['jobnumber']
        rp = db.session.execute(text("SELECT cost FROM public.options where cast(optionno AS VARCHAR) like :jn"), {"jn": f"%{jn}%"})
        result_set = rp.fetchall()
        return render_template('main.html', result_set=result_set, jn=jn)
    else:
        return render_template('main.html')

    if __name__ == "__main__":
        app.run(debug=True)
  

Main.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <title>xxx</title>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
    <link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
</head>

<body>
<p>xxx</p>

<form method="POST" id="jobnumber">
    <input name="jobnumber" type="text"  placeholder="jobnumber">
</form>

<table> 

<td>
<h1> Results</h1>
       <p>{{result_set}}</p>

</td>


</table>

</body>
</html>

如何让它只显示与PGAdmin相同的显示?

1 个答案:

答案 0 :(得分:0)

您似乎正在烧瓶中搜索%,而在pgAdmin中却没有搜索。如果两者都需要相同的结果,请使用相同的查询。

%括住搜索字符串会向SQL引擎指示您要具有包含搜索字符串的值。不只是完全匹配。