获取未定义的方法“validates_presence_of”对于自定义 attr_accessor

发布于 2024-10-15 13:05:46 字数 665 浏览 2 评论 0原文

我认为问题在于这是一个定制模型。

错误:

undefined method `validates_presence_of' for Calculation:Class

我的模型:

class Calculation
  extend ActiveModel::Naming
  include ActiveModel::Conversion

  def persisted?
    false
  end

  attr_accessor :name, :docket_num, :payments, :our_file_num,
                :date_awarded, :date_paid, :amount_paid, :judgement_balance,
                :results, :total_interest, :per_diem, :lda

  validates_presence_of :date_awarded, :docket_num, :judgement_balance

可能我需要包含或扩展某些内容才能获得 Rails 验证?该项目位于 Rails 项目内,但我手动构建了模型。

有什么想法吗?

I think the trouble is coming from the fact this is a custom Model.

Error:

undefined method `validates_presence_of' for Calculation:Class

My Model:

class Calculation
  extend ActiveModel::Naming
  include ActiveModel::Conversion

  def persisted?
    false
  end

  attr_accessor :name, :docket_num, :payments, :our_file_num,
                :date_awarded, :date_paid, :amount_paid, :judgement_balance,
                :results, :total_interest, :per_diem, :lda

  validates_presence_of :date_awarded, :docket_num, :judgement_balance

Possibly there is something I need to include or extend to get Rails validations? The project is within a rails project, but I constructed the model by hand.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

飘落散花 2024-10-22 13:05:46

尝试包含ActiveModel::Validations

有关更多信息,请查看相关文档

try including ActiveModel::Validations.

For more info checkout the documentation on it

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文