Rails 查看 ruby-china 后台自定义模板,一处不明白

stephen · March 31, 2012 · Last by suupic replied at April 01, 2012 · 2380 hits

后台是用自定义模板,查看定义模板 index.html

1   <h1><%%= t("mongoid.models.<%= file_name %>") %></h1>
2   <div id="<%= plural_table_name %>">
3     <table class="grid">
4     <tr class="head">
5      <td>编号</td>
6<% attributes.each do |attr| -%>
7      <td><%%= t("mongoid.attributes.<%= file_name %>.<%= attr.name %>") %>
8     </td>
9 <% end -%>

第 1 和第 7,mongoid.models 和 mongoid.attributes 是什么,如果是 mysql 呢?

mongoid 的 i18n 字段名 翻译模型的名称和属性的名称

You need to Sign in before reply, if you don't have an account, please Sign up first.