gpt4 book ai didi

ruby-on-rails - Rails fixtures 中的标签关联因 "no columns named..."而失败

转载 作者:行者123 更新时间:2023-12-05 04:56:30 26 4
gpt4 key购买 nike

我正在尝试使用 Label references for associations在我的简单 Rails (6) 项目中,出现“没有名为...的列”错误。

除其他外,我有 orders.yml:

one:
name: Dave Thomas
address: MyText
email: dave@example.org
pay_type: credit_card

其中 pay_type 是对 pay_types.yml 中实体的引用:

credit_card:
description: Credit Card

但是,当我运行任何测试时,我看到一个 fixtures 失败:

Error:
OrderTest#test_order_attributes_must_not_be_empty:
ActiveRecord::Fixture::FixtureError: table "orders" has no columns named "pay_type".
/Users/sam/.rbenv/versions/2.6.6/lib/ruby/gems/2.6.0/gems/activerecord-6.0.3.3/lib/active_record/connection_adapters/abstract/database_statements.rb:427:in `block in build_fixture_sql'

我可以通过直接引用 ID 来完成这项工作,但我宁愿不这样做:

pay_type_id: 1

Fixtures.identify 也按照 this answer 工作(如果我将文件重命名为具有 .yml.erb 扩展名):

pay_type_id: <%= Fixtures.identify(:credit_card) %>

但我真的很想让我的原始表单正常工作。

以下是相关模型的样子:

class Order < ApplicationRecord
has_many :line_items, dependent: :destroy
has_one :pay_type

validates :name, :address, :email, presence: true
validates_presence_of :pay_type
end
class PayType < ApplicationRecord
has_many :order
end

这是 schema.yml 的摘录:

  create_table "orders", force: :cascade do |t|
t.string "name"
t.text "address"
t.string "email"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
t.integer "pay_type_id", null: false
t.index ["pay_type_id"], name: "index_orders_on_pay_type_id"
end

create_table "pay_types", force: :cascade do |t|
t.string "description"
t.datetime "created_at", precision: 6, null: false
t.datetime "updated_at", precision: 6, null: false
end

我尝试过但没有帮助的事情:

知道我可能做错了什么吗?

更新:我想这是我在 Order 模型上从 pay_type 字符串列切换到 pay_type_id 引用时做错了什么。

如果您想查看完整的项目代码库(它相当小):https://github.com/sampart/rails-book-depot/tree/pay-type-label-reference

上下文:我正在使用使用 Rails 6 进行敏捷 Web 开发,并且正在执行将支付类型移动到数据库中的扩展任务。

最佳答案

问题是我的联想 - has_one假设在关系的另一端有引用,因此在 PayType 上寻找不存在的 order_id 列。

当我更改我的 Order 模型时:

belongs_to :pay_type

然后它起作用了。

虽然https://guides.rubyonrails.org/association_basics.html#the-belongs-to-association说“belongs_to 关联建立了与另一个模型的一对一连接”,事实证明它们不是一对一关系。

关键是 belongs_to 期望外键列位于添加声明本身的模型上。

关于ruby-on-rails - Rails fixtures 中的标签关联因 "no columns named..."而失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64914389/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com