标签: ruby-on-rails-3 state-machine
如何使用state_machine返回特定状态的记录列表?有点像:
@locked = current_user.docs.locked?
干杯。
修改
似乎current_user.docs.with_state(:locked).all也不起作用。
current_user.docs.with_state(:locked).all
答案 0 :(得分:0)
一个简单的current_user.docs.where(:state => "locked")工作,我只是觉得有更好的方法。
current_user.docs.where(:state => "locked")