gpt4 book ai didi

ruby-on-rails - rails 3 : Call functions inside controllers

转载 作者:数据小太阳 更新时间:2023-10-29 06:45:40 24 4
gpt4 key购买 nike

如果我想在 Controller 内部调用函数,我应该把它们放在哪里?

最佳答案

如果您希望它在 Controller 本地,那么您需要做的就是将它添加到您希望使用的 Controller 。

private
def myfunction
function code.....
end

对于所有 Controller ,您可以将它放在应用程序 Controller 中,因为所有 Controller 都是子类。

应用程序 Controller

protected

def myfunction

function code.....

end

如果你想访问你的 View ,那么你可以创建一个助手

应用助手

def myfunction

function code...

end

关于ruby-on-rails - rails 3 : Call functions inside controllers,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4605837/

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