我在python中有一个显示名称列表的函数。
def search():
with open('business_ten.json') as f:
data=f.read()
jsondata=json.loads(data)
for row in jsondata['rows']:
#print row['text']
a=str(row['name'])
print a
return a
search()
我正在尝试使用Flask
在HTML文件中调用此函数{% extends "layout.html" %}
{% block content %}
<div class="jumbo">
<h2>Welcome to the Rating app<h2>
<h3>This is the home page for the Rating app<h3>
</div>
<body>
<p>{{ search.a }}</p>
</body>
{% endblock %}
我的路线文件如下:
from flask import Flask,render_template
app = Flask(__name__)
@app.route('/')
def hello_world():
return 'Hello gugugWorld!'
@app.route('/crawl')
def crawl():
return render_template('crawl.html')
答案 0 :(得分:3)
有很多方法可以做到这一点:
1 - 您可以注册一个新的Jinja2过滤器
2 - 你可以将你的函数作为Jinja2参数传递(这个更容易)
方法2:
@app.route('/crawl')
def crawl():
return render_template('crawl.html', myfunction=search)
在模板调用中,参数具有函数
{% extends "layout.html" %}
{% block content %}
<div class="jumbo">
<h2>Welcome to the Rating app<h2>
<h3>This is the home page for the Rating app<h3>
</div>
<body>
<p>{{ myfunction() }}</p>
</body>
{% endblock %}