ruby-on-rails – 窗体在使用渲染后不起作用

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 窗体在使用渲染后不起作用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图在我的ActiveAdmin表单方法中使用render方法,但是在插入渲染之后
代码中,它停止工作.
form do |f|
    f.inputs I18n.t('sale_header') do
      f.input :client
      f.input :room
    end

    f.inputs I18n.t('sale_items')  do
      render :partial => "form_sale"
    end

    f.inputs I18n.t('totalization') do
      f.input :sub_total,:input_html => { :disabled => :true }
      f.input :discount
      f.input :total_value,:input_html => { :disabled => :true }
    end

    f.buttons
end

插入render方法后,屏幕上只显示form_sale内容.

任何帮助?
谢谢!

解决方法

根据 the documentation,在active_admin中定制表单的正确方法是:
ActiveAdmin.register Post do
  form :partial => "form"
end

然后在您的部分“_form.html.erb”中,您应该使用formtastic DSL,这样的东西:

<%= semantic_form_for [:admin,@post] do |f| %>
   <%= f.inputs :title,:body %>
   <%= f.buttons :commit %>
 <% end %>

在网页上明确说明:

If you require a more custom form than can be provided through the DSL,you can pass 
a partial in to render the form yourself.

这意味着active_admin的DSL有一些微小的限制.

我所有的“渲染”和“形式:部分”的实验都没有结果.如果你想使用partial,它应该替换所有的形式.

原文链接:https://www.f2er.com/ruby/272988.html

猜你在找的Ruby相关文章