1
我遇到这样的代码:在Ruby中,“scoped”是什么意思?
def self.search(search)
if search
where(['title LIKE ? OR description LIKE ? ', "%#{search}%", "%#{search}%"])
else
scoped
end
end
什么是“区域性”的语句是指什么?对Google来说,这非常困难。
在Ruby中,它只是一个方法调用。我相信你想问在Rails中这意味着什么:) – samuil 2013-02-13 10:48:49
谢谢! [............] – 2013-02-15 00:43:05