我一直(几个小时)在Rails中遇到麻烦。我发现了很多类似的问题,但无法申请此案:

市级:

class City < ApplicationRecord
  has_many :users
end

用户类别:
class User < ApplicationRecord
  belongs_to :city

  validates :name, presence: true, length: { maximum: 80 }
  validates :city_id, presence: true
end

用户 Controller :
def create
    Rails.logger.debug user_params.inspect
    @user = User.new(user_params)
    if @user.save!
      flash[:success] = "Works!"
      redirect_to '/index'
    else
      render 'new'
    end
 end

def user_params
  params.require(:user).permit(:name, :citys_id)
end

用户 View :
<%= form_for(:user, url: '/user/new') do |f| %>
  <%= render 'shared/error_messages' %>

  <%= f.label :name %>
  <%= f.text_field :name %>

  <%= f.label :citys_id, "City" %>
  <select name="city">
    <% @city.all.each do |t| %>
      <option value="<%= t.id %>"><%= t.city %></option>
    <% end %>
  </select>
end

迁移:
class CreateUser < ActiveRecord::Migration[5.0]
  def change
    create_table :user do |t|
      t.string :name, limit: 80, null: false
      t.belongs_to :citys, null: false
      t.timestamps
  end
end

来自控制台和浏览器的消息:
ActiveRecord::RecordInvalid (Validation failed: City must exist):

好吧,问题在于,User.save方法接受用户模型中不是FK的属性,而诸如citys_id这样的FK属性却不被接受。然后,它在浏览器中显示错误消息,提示“必须存在验证失败的城市”。

谢谢

最佳答案

请尝试以下操作:

belongs_to :city, optional: true

根据new docs:

关于ruby-on-rails - 验证失败的类必须存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38983666/

10-13 04:48