gpt4 book ai didi

javascript - 在更新时显示从 Flask View 流式传输的数据

转载 作者:太空狗 更新时间:2023-10-29 17:16:07 25 4
gpt4 key购买 nike

我有一个生成数据并实时流式传输的 View 。我不知道如何将这些数据发送到我可以在我的 HTML 模板中使用的变量。我当前的解决方案只是在数据到达时将其输出到空白页,这很有效,但我想将其包含在具有格式的更大页面中。如何更新、格式化和显示流式传输到页面的数据?

import flask
import time, math

app = flask.Flask(__name__)

@app.route('/')
def index():
def inner():
# simulate a long process to watch
for i in range(500):
j = math.sqrt(i)
time.sleep(1)
# this value should be inserted into an HTML template
yield str(i) + '<br/>\n'
return flask.Response(inner(), mimetype='text/html')

app.run(debug=True)

最佳答案

您可以在响应中流式传输数据,但不能按照您描述的方式动态更新模板。模板在服务器端渲染一次,然后发送到客户端。

一种解决方案是使用 JavaScript 读取流式响应并在客户端输出数据。使用 XMLHttpRequest向将流式传输数据的端点发出请求。然后定期从流中读取直到完成。

这会带来复杂性,但允许直接更新页面并完全控制输出的外观。以下示例通过显示当前值和所有值的日志来演示这一点。

此示例采用非常简单的消息格式:单行数据,后跟换行符。这可以根据需要变得非常复杂,只要有一种方法可以识别每条消息。例如,每个循环都可以返回一个客户端解码的 JSON 对象。

from math import sqrt
from time import sleep
from flask import Flask, render_template

app = Flask(__name__)

@app.route("/")
def index():
return render_template("index.html")

@app.route("/stream")
def stream():
def generate():
for i in range(500):
yield "{}\n".format(sqrt(i))
sleep(1)

return app.response_class(generate(), mimetype="text/plain")
<p>This is the latest output: <span id="latest"></span></p>
<p>This is all the output:</p>
<ul id="output"></ul>
<script>
var latest = document.getElementById('latest');
var output = document.getElementById('output');

var xhr = new XMLHttpRequest();
xhr.open('GET', '{{ url_for('stream') }}');
xhr.send();
var position = 0;

function handleNewData() {
// the response text include the entire response so far
// split the messages, then take the messages that haven't been handled yet
// position tracks how many messages have been handled
// messages end with a newline, so split will always show one extra empty message at the end
var messages = xhr.responseText.split('\n');
messages.slice(position, -1).forEach(function(value) {
latest.textContent = value; // update the latest value in place
// build and append a new item to a list to log all output
var item = document.createElement('li');
item.textContent = value;
output.appendChild(item);
});
position = messages.length - 1;
}

var timer;
timer = setInterval(function() {
// check the response for new data
handleNewData();
// stop checking once the response has ended
if (xhr.readyState == XMLHttpRequest.DONE) {
clearInterval(timer);
latest.textContent = 'Done';
}
}, 1000);
</script>

<iframe>可用于显示流式 HTML 输出,但它有一些缺点。框架是一个单独的文件,这增加了资源的使用。由于它只显示流式数据,因此可能不容易像页面的其余部分一样设置样式。它只能附加数据,因此长输出将呈现在可见滚动区域下方。它不能修改页面的其他部分以响应每个事件。

index.html使用指向 stream 的框架呈现页面端点。该框架的默认尺寸相当小,因此您可能希望进一步设计它的样式。使用 render_template_string ,它知道转义变量,为每个项目呈现 HTML(或使用 render_template 和更复杂的模板文件)。可以生成初始行以首先在框架中加载 CSS。

from flask import render_template_string, stream_with_context

@app.route("/stream")
def stream():
@stream_with_context
def generate():
yield render_template_string('<link rel=stylesheet href="{{ url_for("static", filename="stream.css") }}">')

for i in range(500):
yield render_template_string("<p>{{ i }}: {{ s }}</p>\n", i=i, s=sqrt(i))
sleep(1)

return app.response_class(generate())
<p>This is all the output:</p>
<iframe src="{{ url_for("stream") }}"></iframe>

关于javascript - 在更新时显示从 Flask View 流式传输的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31948285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com