簡體   English   中英

Rails 6嵌套不顯示form_with

[英]Rails 6 nested not displaying form_with

class CustomerType < ApplicationRecord
  belongs_to :workspace, inverse_of: :customer_type
  validates_presence_of :workspace
end

class Workspace < ApplicationRecord
  validates :name, presence: true, uniqueness: { case_sensitive: false }

  has_one :customer_type
  accepts_nested_attributes_for :customer_type, allow_destroy: true
end
# controller

  def new
    @workspace = Workspace.new
    @workspace.build_customer_type
  end
# _form
<%= form_with(model: [:back_office, @workspace]) do |form| %>
...
  <%= form.fields_for :customer_type, @workspace.customer_type do |s| %>
    <%= s.label :build, 'Build', class: 'form-check-label'%>
    <%= s.radio_button :build, 'build', class: 'form-check-input'%>
  <% end %>
...
<% end %>


class CreateCustomerTypes < ActiveRecord::Migration[6.1]
  def change
    create_table :customer_types, id: :uuid do |t|
      t.boolean :build, default: false
      t.boolean :grow, default: false
      t.boolean :connector, default: false
      t.references :workspace, null: false, foreign_key: true, type: :uuid

      t.timestamps
    end
  end
end

workspacecustomerType類型之間的創建做得很好我在 controller 中顯示了 class

我知道可能有一個解決方案的帖子,但我找不到

它沒有出現在表格中是不是有錯誤?

您的表單沒有正確縮進:

它應該看起來像

# _form
<%= form_with(model: [:back_office, @workspace]) do |form| %>
...
  <%= form.fields_for :customer_type, @workspace.customer_type do |s| %>
    <%= s.label :build, 'Build', class: 'form-check-label'%>
    <%= s.radio_button :build, 'build', class: 'form-check-input'%>
  <% end %>
...
<% end %>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM