1

这是我让所有用户具有特定角色的代码

          <% users = User.all%>
          <% users.each{ |user|%>
              <% if not  user.has_role? 'coach'%>
              <% next%>
              <% end%>  
          <option value="<%=user.id%>"><%=user.first_name%> </option>
          <% }%>

这个简单的任务看起来代码太多了。有一个更好的方法吗?

4

1 回答 1

3

就在自述文件https://github.com/EppO/rolify

User.with_role(:coach)
于 2013-06-16T04:36:06.753 回答