像这样的模型:
create_table "user_accounts", :force => true do |t|
t.string "code"
t.string "user_name"
t.integer "user_type", :default => 1
end
控制器的代码如下:
def index
@user_accounts = UserAccount.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @user_accounts }
format.xml { render :xml => @user_accounts }
end
end
View 的代码如下:
<table>
<tr>
<th><%= t :code %></th>
<th><%= t :user_name %></th>
<th><%= t :user_type %></th>
<th></th>
<th></th>
<th></th>
</tr>
<% @user_accounts.each do |user_account| %>
<tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
<td><%= user_account.code %></td>
<td><%= user_account.user_name %></td>
<td><%= user_account.user_type %></td>
<td><%= link_to 'Show', user_account %></td>
<td><%= link_to 'Edit', edit_user_account_path(user_account) %></td>
<td><%= link_to 'Destroy', user_account, :confirm => 'Are you sure?', :method => :delete %></td>
</tr>
<% end %>
</table>
一切正常。但有一个缺陷是“user_type”显示为数字。但我希望它可以显示为像“普通用户”或“系统管理员”这样的字符串。
最重要的是我不想在视图中添加任何逻辑(index.html.erb)。
所以我需要在控制器或任何地方更改 user_type 的值。
必须有一些优雅的方法来做到这一点。但我不知道。希望你们能给我一些建议。谢谢!