我对rails /编程/网站开发很陌生,这是我得到的错误:
ActiveModel :: MissingAttributeError(无法写出未知属性'shopping_list_id'
)
在选择特定的 Meal 对象(带有collection_check_box)和关联的后,我尝试保存一个填充了 Item 对象的购物清单对象成分对象。
查看localhost服务器日志,使用从正确的meal_ids检索的正确成分(并分配到当前购物清单ID)正确创建所有项目 - 但是当保存实际购物清单时,我得到了上述内容错误。请参阅下面的服务器日志图片。
我已经被困在这几天了,而且我已经看到很多帖子都有相同的错误,但似乎所有情况都与这个问题完全不同。
与strong_parameters有关吗?或者我的协会错了吗?
在我的饭菜中index.html.erb:
<%= form_for :shopping_list, url: shopping_lists_path do |f| %>
<%= collection_check_boxes :shopping_list, :meal_ids, Meal.all, :id, :name do |b|%>
<%= b.label class:"label-checkbox" do%>
<%=b.check_box + b.text%>
<%end%>
<% end %>
<%= f.submit "Create Shopping List" %>
<% end %>
我的shopping_lists_controller:
def create
@shopping_list = ShoppingList.new(shopping_list_params)
@meals = Meal.where(id:[@shopping_list.meal_ids])
@meals.map do |meal|
meal.ingredients.map do |ingredient|
@shopping_list.items.build(name: ingredient.name, quantity: ingredient.quantity, unit: ingredient.unit, shopping_list_id: @shopping_list.id)
end
end
respond_to do |format|
if @shopping_list.save
format.html { redirect_to @shopping_list, notice: 'Shopping List was successfully created.' }
format.json { render :show, status: :created, location: @shopping_list }
else
format.html { render :new }
format.json { render json: @shopping_list.errors, status: :unprocessable_entity }
end
end
end
私有
def set_shopping_list
@shopping_list = ShoppingList.find(params[:id])
end
def shopping_list_params
params.require(:shopping_list).permit(:name, {meal_ids: []})
end
我的购物清单型号:
class ShoppingList < ApplicationRecord
has_many :items
has_many :meals
accepts_nested_attributes_for :meals
accepts_nested_attributes_for :items
end
我的商品型号:
class Item < ApplicationRecord
belongs_to :shopping_list
end
我的架构.rb:
create_table "ingredients", force: :cascade do |t|
t.integer "meal_id"
t.string "name"
t.float "quantity"
t.integer "unit"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["meal_id"], name: "index_ingredients_on_meal_id"
end
create_table "items", force: :cascade do |t|
t.integer "shopping_list_id"
t.string "name"
t.float "quantity"
t.integer "unit"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["shopping_list_id"], name: "index_items_on_shopping_list_id"
end
create_table "meals", force: :cascade do |t|
t.string "name"
t.string "description"
t.string "method"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.string "meal_image_file_name"
t.string "meal_image_content_type"
t.integer "meal_image_file_size"
t.datetime "meal_image_updated_at"
t.integer "diet"
end
create_table "shopping_lists", force: :cascade do |t|
t.string "name"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
end
答案 0 :(得分:1)
问题是Meal
模型有belongs_to :shopping_list
但它没有列shopping_list_id
。
所以当你运行
ShoppingList.create(meal_ids: ['1'])
Rails尝试创建Meal
模型并将其链接回ShoppingList
,但它不能,因为没有这样的属性,错误告诉您ActiveModel::MissingAttributeError
。要修复创建迁移,例如:
add_column :meals, :shopping_list_id, :integer
答案 1 :(得分:0)
在create
的{{1}}方法中,您正在使用shopping_lists_controller
的新实例,并使用该实例的ID创建shopping_list
。由于新实例未保存到数据库,因此它不会有items
。因此,在创建项目时不能使用id
。
所以要么改变
@shopping_list.id
到
@shopping_list = ShoppingList.new(shopping_list_params)
或做
@shopping_list = ShoppingList.create(shopping_list_params)
如果引发任何异常,您可能还想销毁此对象。