当前位置:  开发笔记 > 编程语言 > 正文

在Ruby on Rails中重构模型方法

如何解决《在RubyonRails中重构模型方法》经验,为你挑选了1个好方法。

我的阵营在铁轨中使用的常用习语如下:

def right_things(all_things, value)
    things = []
    for thing in all_things
       things << thing if thing.attribute == value
    end
    return things
end

我怎样才能让这更好/更快/更强?

谢谢

-C



1> Chris Dogget..:
def right_things(all_things, value)
    all_things.select{|x| x.attribute == value}
end

推荐阅读
凹凸曼00威威_694
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有