Flask:如何从Python输出字符串,但在HTML中显示为超链接

问题描述 投票:0回答:1

因此,我从HTML文本框中获取用户输入,然后返回一些URL。但是目前,当我直接返回URL(以字符串形式)时,HTML URL输出不可点击;他们只是纯文本。有没有一种方法可以将返回的python字符串转换为HTML url?

我可以将python端返回的URL的格式更改为可以转换为可单击的HTML URL的任何内容。

Python代码:

#this gets the query and then returns urls
@app.route('/output', methods=['POST'])
def output():
    query_list = request.form['query']
    outputResults = someFunction(query_list)
    return render_template("output.html", output=outputResults)

HTML代码:

{% extends 'layout.html' %}

{% block body %}
<div class="jumbotron text-left">
  <body>
    <style> p {white-space: pre-wrap; }</style>
    <h1>Output</h1>
    <p> {{output}}
    </p>
  </body>

  </div>
{% endblock %}  

谢谢

python-3.x url flask
1个回答
0
投票

如果查询中有多个链接,请在模板中使用for循环,如下所示:

{% extends 'layout.html' %}

{% block body %}
<div class="jumbotron text-left">
  <body>
    <style> p {white-space: pre-wrap; }</style>
    <h1>Output</h1>
    {% for link in output %}
     <a href ="{{link}}">title_your_link</a>
    {% endfor %}
  </body>
  </div>
{% endblock %}
© www.soinside.com 2019 - 2024. All rights reserved.