我想在一个 Flask 项目里面嵌入实时股票 Chart,在网上找到 Investing.com 以 iframe 方式提供这种 widget https://www.investing.com/webmaster-tools/technical-charts
于是,我随便生成一个 QQQ 的 k 线图,Investing 给我的代码如下:
<iframe height="800" width="600" src="https://ssltvc.forexprostools.com/?pair_ID=651&height=800&width=600&interval=86400&plotStyle=candles&domain_ID=1&lang_ID=1&timezone_ID=7"></iframe>
我把这个代码随便嵌到一个网站里面没问题,比如: https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_iframe 这个里面替换 iframe,可以正确显示。
flask 代码在本地跑的时候,以 127.0.0.1 跑,显示域名不对,于是我换成 localhost,可以显示。但是显然我这个程序是需要跑在服务器上的。我把代码拷贝到云主机,在云主机里面跑的时候,显示 504 Gateway Error, 但是单独把 src 输入地址栏又可以打开。会是什么问题呢?
把 src 换成 baidu,google 之类的,也没问题。
Flask 代码如下:
from flask import Flask, render_template
app = Flask(__name__)
@app.route("/")
def Index():
return render_template('index.html')
app.run('0.0.0.0', 80)
template/index.html 代码如下:
<html>
<head><title>Test</title></head>
<body>
<div>
<iframe height="800" width="600" src="https://ssltvc.forexprostools.com/?pair_ID=651&height=800&width=600&interval=86400&plotStyle=candles&domain_ID=1&lang_ID=1&timezone_ID=7"></iframe>
</div>
</body>
</html>
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.