在 Rails 5.2 上是不是有调用枚举的新方法?
Posted
技术标签:
【中文标题】在 Rails 5.2 上是不是有调用枚举的新方法?【英文标题】:Is there a new method to call enums on Rails 5.2?在 Rails 5.2 上是否有调用枚举的新方法? 【发布时间】:2021-04-13 18:08:57 【问题描述】:我用枚举构建了一个应用程序,并且一切正常。 但是,在我有嵌套表单的另一个应用程序上,我遇到了一个小问题。 尽管后端似乎一切正常,但在我看来并没有显示结果并说我有一个未定义的方法
有没有人有同样的问题,还是只有我一个??
我的架构:
create_table "estimate_variants", force: :cascade do |t|
t.integer "unit", default: 0
t.bigint "estimate_id"
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.index ["estimate_id"], name: "index_estimate_variants_on_estimate_id"
end
我的主要模特
class Estimate < ApplicationRecord
has_many :estimate_variants
accepts_nested_attributes_for :estimate_variants
end
我的嵌套模型
class EstimateVariant < ApplicationRecord
enum unit: SF: 0, LF: 1
belongs_to :estimate
end
我的看法
<%= form.fields_for :estimate_variants do |builder| %>
<div class="field col s12">
<%= builder.label :unit, 'Unit' %>
<%= form.select(unit: EstimateVariant.units.keys) %>
</div>
我得到的错误是:
有人可以指导我解决这个问题吗??
【问题讨论】:
【参考方案1】:更新
我认为问题出在您认为的 select
助手,请尝试:
<%= builder.select(:unit, EstimateVariant.units.keys) %>
我做了一个例子来测试和为我工作,模型中的枚举也只定义键,值以升序增加。
你可以定义:
enum unit: sf: 0, lf: 1
or
enum unit: [:sf, lf]
enum unit: %i[sf lf]
【讨论】:
是的,我认为问题也出在 select 我尝试了你的建议,但它对我不起作用,仍然出现错误:未定义的方法`:unit=>["sf", #<0x000000000f107390>0x000000000f107390><>
以上是关于在 Rails 5.2 上是不是有调用枚举的新方法?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Rails ssl_post 告诉 OpenSSL 关于传出 API 调用的新证书?