where.not、map、代码格式

2017-05-03  本文已影响0人  程序萌

遇到的问题

下拉菜单显示("emall_code='bd' AND is_special='0'")的条件判断

解决方法

def self.order_names
    Emall.where.not("emall_code='bd' AND is_special='0'").map{ |emall| [emall.name, emall.id]}
  end

查询的资料

where.not
map的用法:

# 迭代并造出另一个阵列
a = ["a", "b", "c", "d"]
b = a.map {|x| x + "!" }
puts b.inspect
# 结果是 ["a!", "b!", "c!", "d!"]

注意的问题

待码格式
日志中打印的ms加载速度数,越低越好。

总结 Rails where用法

上一篇下一篇

猜你喜欢

热点阅读