使用Flask将URL加载到iFrame中

时间:2015-04-18 18:47:51

标签: python flask

我是Flask和 我尝试创建类似Stumbleupon的网站,但在将内容加载到iFrame时遇到了问题。我只是想弄清楚如何遍历每个网址并将其加载到iFrame中,同时点击<a>标记。

以下是我所做的:

app.py

from flask import Flask, render_template
app = Flask(__name__)

@app.route("/")
def index():
    urls = [
        'http://www.w3schools.com',
        'http://techcrunch.com/',
        'https://www.fayerwayer.com/',
    ]
    return render_template('index.html', urls=urls)

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

模板/的layout.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <link rel="stylesheet" type="text/css" href="/static/css/normalize.css"/>
    <link rel="stylesheet" type="text/css" href="/static/css/foundation.css"/>

</head>
<body>
    <nav class="top-bar">
        <h3 align="center"><a href="?????">Stumble</a></h3>
    </nav>

    {% block content %} 
    {% endblock content %}

</body>
</html>

模板/ index.html中

{% extends 'layout.html' %}
{% block content %}
    <iframe frameborder='0' noresize='noresize' style='position: absolute; background: transparent; width: 100%; height:100%;' src="????????" frameborder="0"></iframe>
{% endblock content %}

1 个答案:

答案 0 :(得分:1)

在app.py文件的顶部添加import random后,您可以像这样构建代码:

def index():
    urls = [
        'http://www.w3schools.com',
        'http://techcrunch.com/',
        'https://www.fayerwayer.com/',
    ]

    iframe = random.choice(urls)

    return render_template('index.html', iframe=iframe)

然后访问模板中的值:

<iframe frameborder='0' noresize='noresize' style='position: absolute; background: transparent; width: 100%; height:100%;' src="{{ iframe }}" frameborder="0"></iframe>

只需设置Stumble按钮即可刷新页面。

<h3 align="center"><a href="/">Stumble</a></h3>

这将是非常基本的,但它将具有您正在描述的行为。

改进将是使用session对象来确保两个后续请求不会在iframe中显示相同的页面。