Rails 5.2 是否有调用枚举的新方法?
Is there a new method to call enums on Rails 5.2?
我用枚举构建了一个应用程序,并且一切正常。
但是,在我嵌套表单的另一个应用程序上,我遇到了一个小问题。
尽管后端似乎一切正常,但在我看来并没有显示结果并说我有一个未定义的方法
有没有人遇到同样的问题或者只有我遇到这样的问题??
我的架构:
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>
我得到的错误是:
有人可以指导我解决这个问题吗??
已更新
我认为问题出在您看来的 select
助手,尝试使用:
<%= builder.select(:unit, EstimateVariant.units.keys) %>
我做了一个例子来测试和工作,模型中的枚举也可以只定义键,值以递增的方式增加。
您可以定义:
enum unit: { sf: 0, lf: 1 }
or
enum unit: [:sf, lf]
enum unit: %i[sf lf]
我用枚举构建了一个应用程序,并且一切正常。 但是,在我嵌套表单的另一个应用程序上,我遇到了一个小问题。 尽管后端似乎一切正常,但在我看来并没有显示结果并说我有一个未定义的方法
有没有人遇到同样的问题或者只有我遇到这样的问题??
我的架构:
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>
我得到的错误是:
有人可以指导我解决这个问题吗??
已更新
我认为问题出在您看来的 select
助手,尝试使用:
<%= builder.select(:unit, EstimateVariant.units.keys) %>
我做了一个例子来测试和工作,模型中的枚举也可以只定义键,值以递增的方式增加。
您可以定义:
enum unit: { sf: 0, lf: 1 }
or
enum unit: [:sf, lf]
enum unit: %i[sf lf]