我可以有一个运行多个方法的操作吗?

发布于 2024-11-01 18:46:03 字数 217 浏览 0 评论 0原文

假设我的控制器中有这个:

def something
end

def email
end

def house
end

我想创建一个操作来运行所有操作,例如电子邮件和房屋,

def runall
Run email, something and house
end

它是如何完成的?

Lets say I have this in my controller:

def something
end

def email
end

def house
end

I want to create an action that runs all of the action something, email and house

def runall
Run email, something and house
end

How is it done?

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

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

发布评论

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

评论(2

一抹微笑 2024-11-08 18:46:03
def runall
  [:something, :email, :house].each{|a| send(a)}    
end

使用 Object#send

这一切都假设这些是某种私人助手,而不是调用来呈现视图等的实际控制器操作。否则我不建议这样做。

def runall
  [:something, :email, :house].each{|a| send(a)}    
end

Using Object#send

This is all assuming these are some sort of private helpers, rather than actual controller actions that are called to render a view etc. Otherwise I don't suggest doing this.

此刻的回忆 2024-11-08 18:46:03

只是为了词汇的缘故:

  • 您对以下问题有很好的答案:“我可以有一个运行多个方法的操作吗”

  • 一个操作链接到一个视图,因此一次执行多个操作是没有意义的

Just for vocabulary's sake:

  • you've had great answers to the following question: "can I have an action which runs several methods"

  • an action is linked to a view so it's non-sense to execute several actions at once

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