在我的 Rails 应用程序中嵌入 resque-web 前端

发布于 2024-12-25 22:45:21 字数 195 浏览 0 评论 0原文

我正在使用 resque Web 前端来管理我的后台作业。我想知道是否有人知道如何将此前端嵌入到我的主布局中。我想使用我的应用程序布局并保留我的 html 标头。

我实际上将 resque 安装为 Rails 机架。

mount Resque::Server.new, :at => "/resque"

I'm using resque web front end to manage my background jobs. I'm wondering if someone know how I can embed this front end inside my main layout. I want to use my application layout and keep my html header.

I'm actually mount resque as a Rails rack.

mount Resque::Server.new, :at => "/resque"

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

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

发布评论

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

评论(1

眸中客 2025-01-01 22:45:22

在resque Gem中

resque / lib / resque / server /

有一个视图和公共文件夹,您可以直接修改它们,或者这些视图文件由sinatra应用程序使用,该应用程序在

resque/lib/resque/server.rb

您可以猴子修补该服务器类(Sinatra应用程序)以使用您自己的视图。

In the resque Gem

resque / lib / resque / server /

There is a view and public folder you could directly modify them or These views files are used by a sinatra app which is called in

resque/lib/resque/server.rb

You could monkey patch that Server class(Sinatra App) to use your own views.

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