0
在這個模型的方法中,我需要self
是否有一個特定的原因?我從另一個控制器訪問它。爲什麼我需要自我?
def self.search(query)
if query
find(:all, conditions: ['lower(first_name) LIKE ? OR lower(last_name) LIKE ?', "%#{query.downcase}%", "%#{query.downcase}%"])
else
find(:all)
end
end
你嘗試沒有'self'? – Tobas