执行脚本并在视图中显示输出/进度 [Ruby/Sinatra(Rails)]

发布于 2024-12-01 20:21:31 字数 439 浏览 0 评论 0原文

我有一个部署脚本,是从我的 Sinatra 应用程序中的助手调用的。

我想显示一个“部署”视图/页面,然后执行脚本。

然后,当脚本完成时,显示一个带有文本框的新页面,其中包含脚本输出。

这是如何完成的?

# update.rb - the main app
helpers do
  def run_update
    command = "./script.sh"
    @ok = system( command )
  end
end

post '/version' do
  run_update     # putting this after the erb call doesnt fix it!?
  erb :version
end

目前,它在主页发布帖子后挂起。然后,当脚本完成时,它会显示 version.erb 文件。

I have a deploy script that is called from a helper in my Sinatra app.

I want show a "deploying" view/page, then exec the script.

Then when the script is finished, show a new page with text box with the script output in.

How can this be done?

# update.rb - the main app
helpers do
  def run_update
    command = "./script.sh"
    @ok = system( command )
  end
end

post '/version' do
  run_update     # putting this after the erb call doesnt fix it!?
  erb :version
end

Currently it hangs after the post is made from the main page. Then when the script is finished it displays the version.erb file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

∝单色的世界 2024-12-08 20:21:31

我想我正在寻找的是 IO#popen

作为子进程运行指定的命令;子流程的标准
输入和输出将连接到返回的IO对象。

I think what I was looking for was IO#popen

Runs the specified command as a subprocess; the subprocess’s standard
input and output will be connected to the returned IO object.

演多会厌 2024-12-08 20:21:31

您可以将输出重定向到文件并通过 HTTP 显示该文件并保持每 x 秒刷新页面

get '/progress' do # This page should be refreshed every x seconds

  # render the file here

end

You can redirect the output to a file and display the file over HTTP and keep refreshing the page every x seconds

get '/progress' do # This page should be refreshed every x seconds

  # render the file here

end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文