gpt4 book ai didi

ruby-on-rails - 在模型中定义可以在 Controller 中访问的方法

转载 作者:行者123 更新时间:2023-12-04 03:39:23 24 4
gpt4 key购买 nike

我在我的 Report 模型中定义了一个问题方法。在定义 Action 表演时,我需要在报告的 Controller 中使用 Report.problem 的值。但我不断收到错误消息“未定义的方法问题”。我该如何解决这个问题?任何帮助都会很棒。

我有一个报告模型和一个包含所有问题列表的问题模型。

在报表模型中

def problems1
Problem.find(:all, :conditions => )
end

在报告 Controller 中,我需要类似的东西
def show
@report = Report.problems1
end

最佳答案

您必须分配 self.method_name用作类方法

遵循模型方法的以下规则

类方法

def self.problem

end

在 Controller 中
Report.problem

实例方法
def problem

end

在 Controller 中
report =  Report.new
report.problem

关于ruby-on-rails - 在模型中定义可以在 Controller 中访问的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3209817/

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