gpt4 book ai didi

ruby-on-rails - 如何向新的 simple_form 2.0.0.rc 添加额外的组件

转载 作者:行者123 更新时间:2023-12-02 02:18:58 24 4
gpt4 key购买 nike

我正在尝试在名为 :with_descripiton 的包装器中的 INPUT 组件之前添加一个名为 Description 的额外组件,它只是一个带有一些文本的 div

我的初始值设定项中有:

config.wrappers :with_description do |b|
b.use :placeholder
b.use :html5
b.use :description
b.use :input
b.use :hint
b.use :error
end

在我的#app/inputs/description_component.rb 中

  module SimpleForm 
module Components
module Description
def description
"Hello There!!!"
end
end
end
end

终于在我看来

   <%= f.input :due_at, :wrapper => :with_description %>

我得到了错误

undefined method `description' for #<SimpleForm::Inputs::StringInput:0x007fb7a5ca95e0>

有人处理过新的简单表单,可能知道这里出了什么问题吗?

谢谢!!!

最佳答案

您是否在文件中描述了正确的代码?看起来您所指的 app/inputs 文件实际上是您的 lib/simple_form 文件。如果是这样,并且其他一切都井井有条,那么看起来您的模块包含在 Inputs::Base 中的部分丢失了:

module SimpleForm 
module Components
module Description
def description
"Hello There!!!"
end
end
end
module Inputs
class Base
include SimpleForm::Components::Description
end
end
end

关于ruby-on-rails - 如何向新的 simple_form 2.0.0.rc 添加额外的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9203899/

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