当属性为零时,如何使用动态查找器避免零?

发布于 2024-10-13 03:03:57 字数 258 浏览 2 评论 0原文

link_to 'articles', articles_path, :attr1 => 'foo', :attr2 => 'bar' 

在控制器中:

Article.find_all_by_attr1_and_attr2(params[:attr1], params[:attr2])

但是,如果控制器仅接收 [:attr1] 我得到一个零。

link_to 'articles', articles_path, :attr1 => 'foo', :attr2 => 'bar' 

And in the controller:

Article.find_all_by_attr1_and_attr2(params[:attr1], params[:attr2])

However if the controller receives only [:attr1] I get a nil.

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

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

发布评论

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

评论(1

我还不会笑 2024-10-20 03:03:57

如果某些查找器实际上并不存在,则动态查找器可能不是正确的方法。在这种情况下,您可能最好在 Rails 2 上使用 Article.find(:all, :conditions => {}) 并在 Rails 2 上使用 Article.where() Rails 3。

这是我不久前针对另一个问题想到的一种方法:

conditions = [:attr1, :attr2].inject({}) do |hsh, field|
  hsh[field] = params[field] if params[field] && params[field].present?
  hsh
end

# Rails 2
@articles = Article.find(:all, :conditions => conditions)

# Rails 3
@articles = Article.where(conditions)

在上面的情况下,您将循环遍历数组中的所有字段,并将它们中的每个字段添加到结果散列中(如果它在 in 中且不为空) 参数。然后,您将哈希值传递给查找器,一切都很好。

Dynamic finders may not be the right way to go if some of finders aren't actually present. In this case, you're probably better off using Article.find(:all, :conditions => {}) on Rails 2 and Article.where() on Rails 3.

Here's a method I came up with for another question a while back:

conditions = [:attr1, :attr2].inject({}) do |hsh, field|
  hsh[field] = params[field] if params[field] && params[field].present?
  hsh
end

# Rails 2
@articles = Article.find(:all, :conditions => conditions)

# Rails 3
@articles = Article.where(conditions)

In the above case, you'd loop over all fields in the array, and add each one of them to the resulting hash if it's in and not empty in params. Then, you pass the hash to the finder, and everything's fine and dandy.

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