在 Rails 辅助方法中,是否可以将列名指定为辅助方法变量,然后使用它?

发布于 2024-11-17 11:29:29 字数 238 浏览 1 评论 0原文

我想创建一个辅助方法,可以将 Rails 查找的结果转换为句子,在其中指定结果以及用于生成句子的列。例如:

  def items_to_sentence(items, label_column)
    items.map { |u| u.(label_column) }.to_sentence
  end

我只是不确定如何告诉 Rails 使用我指定的列。

感谢您的关注。

I want to create a helper method that can turn the results of a Rails find into a sentence, where I specify the the results, and the column to use for making the sentence. For example:

  def items_to_sentence(items, label_column)
    items.map { |u| u.(label_column) }.to_sentence
  end

I'm just not sure how to tell Rails to use my specified column.

Thanks for looking.

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

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

发布评论

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

评论(1

十年九夏 2024-11-24 11:29:29

如果 items 包含 ActiveRecord 对象(或具有与您的列名称匹配的访问器方法的任何其他对象),那么您可以使用 send

def items_to_sentence(items, label_column)
  items.map { |u| u.send(label_column) }.to_sentence
end

或者等效:

def items_to_sentence(items, label_column)
  items.map(&(label_column.to_sym)).to_sentence
end

或者,如果太吵了:

def items_to_sentence(items, label_column)
  sym = label_column.to_sym
  items.map(&sym).to_sentence
end

If items contains ActiveRecord objects (or any other objects that have accessor methods that match up with your column names), then you could use send:

def items_to_sentence(items, label_column)
  items.map { |u| u.send(label_column) }.to_sentence
end

Or equivalently:

def items_to_sentence(items, label_column)
  items.map(&(label_column.to_sym)).to_sentence
end

Or, if that's too noisy:

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