在代码的最后,我想在同一页面上呈现视图和流式传输数据。
class ManagerController < ApplicationController
include ActionController::Live
def index
response.stream.write("Hello")
response.stream.close
end
end
这是我在 index.html.erb 中的观点:
Hi!
但问题是视图没有呈现,而是“你好”显示为 html 输出,如果我评论这些响应代码,那么它就会被呈现。如何渲染视图并同时流式传输数据?