将控制器逻辑(例如“@answers = Answer.all”)传递给 Active Admin 部分

发布于 2024-12-18 10:56:53 字数 497 浏览 0 评论 0原文

我在 Active Admin 的仪表板.rb 文件中创建了此部分。我需要将变量传递给部分,以便它可以在 /Admin 的仪表板部分呈现该数据。我需要在控制器中或部分可以获取的地方创建方程,并将它们传递给部分。我可以在活动管理中的哪里执行此操作?

# == Render Partial Section
  # The block is rendered within the context of the view, so you can
  # easily render a partial rather than build content in ruby.
  #
    section "Month One Statistics" do
      div do
        render 'recent_graphs' # => this will render /app/views/admin/dashboard/_recent_posts.html.erb
       end
     end

I created this partial in the dashboards.rb file for Active Admin. I need to pass variables to the partial so it can render that data out on the dashboard section of /Admin. I need to create the equations in a controller, or somewhere where the partial can get at it, and pass them to the partial. Where can I do that in active admin?

# == Render Partial Section
  # The block is rendered within the context of the view, so you can
  # easily render a partial rather than build content in ruby.
  #
    section "Month One Statistics" do
      div do
        render 'recent_graphs' # => this will render /app/views/admin/dashboard/_recent_posts.html.erb
       end
     end

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

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

发布评论

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

评论(1

没企图 2024-12-25 10:56:53

尝试一下 wiki,它有很好的解释,以及其他好东西

https://github.com/gregbell/active_admin/wiki/

Try the wiki, it has a good explanation, as well as other goodies here:

https://github.com/gregbell/active_admin/wiki/

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