在我的 Rails 应用程序中嵌入 resque-web 前端
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在resque Gem中
有一个视图和公共文件夹,您可以直接修改它们,或者这些视图文件由sinatra应用程序使用,该应用程序在
您可以猴子修补该服务器类(Sinatra应用程序)以使用您自己的视图。
In the resque Gem
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
You could monkey patch that Server class(Sinatra App) to use your own views.