• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Ruby on rails开发从头来(windows)(六)-美化你的列表页面

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

在上一篇随笔中,我们给Products的创建页面添加了输入验证,今次的内容非常简单,来稍稍美化下Products的列表页面。

 

1.       打开app\views\admin\list.rhtml文件,可以看到下面的代码

<h1>Listing products</h1>

 

<table>

  <tr>

  <% for column in Product.content_columns %>

    <th><%= column.human_name %></th>

  <% end %>

  </tr>

 

<% for product in @products %>

  <tr>

  <% for column in Product.content_columns %>

    <td><%=h product.send(column.name) %></td>

  <% end %>

    <td><%= link_to 'Show', :action => 'show', :id => product %></td>

    <td><%= link_to 'Edit', :action => 'edit', :id => product %></td>

    <td><%= link_to 'Destroy', { :action => 'destroy', :id => product }, :confirm => 'Are you sure?', :method => :post %></td>

  </tr>

<% end %>

</table>

 

<%= link_to 'Previous page', { :page => @product_pages.current.previous } if @product_pages.current.previous %>

<%= link_to 'Next page', { :page => @product_pages.current.next } if @product_pages.current.next %>

 

<br />

 

<%= link_to 'New product', :action => 'new' %>

 

可以看到,list页面实际上是对Products做循环,然后对每行,每列逐个输出到一个Table中,而link_to函数,我们在前面的内容中也使用过。

 

2.        修改app\views\admin\list.rhtml的内容,如下:

<h1>Product Listing</h1>

<table cellpadding="5" cellspacing="0">

  <%

  odd_or_even = 0

  for product in @products

  odd_or_even = 1 - odd_or_even

  %>

 

    <tr valign="top" class="ListLine<%= odd_or_even %>">

      <td>

        <img width="60" height="70" src="<%= product.image_url %>"/>

      </td>

      <td width="60%">

        <span class="ListTitle"><%= h(product.title) %></span><br />

      <%= h(truncate(product.description, 80)) %>

      </td>

      <td align="right">

        <%= product.date_available.strftime("%y-%m-%d") %><br/>

        <strong>$<%= sprintf("%0.2f", product.price) %></strong>

      </td>

      <td class="ListActions">

        <%= link_to 'Show', :action => 'show', :id => product %><br/>

        <%= link_to 'Edit', :action => 'edit', :id => product %><br/>

        <%= link_to 'Destroy', { :action => 'destroy', :id => product },

        :confirm => "Are you sure?" %>

      </td>

    </tr>

  <% end %>

</table>

<%= if @product_pages.current.previous

  link_to("Previous page", { :page => @product_pages.current.previous })

  end

%>

<%= if @product_pages.current.next

  link_to("Next page", { :page => @product_pages.current.next })

  end

%>

<br />

<%= link_to 'New product', :action => 'new' %>

3.        在上面的代码里,我们可以看到td class="ListActions"这样的代码,下来我们添加这些css样式的内容:

将下面的内容添加到public\stylesheets\ scaffold.css文件中:

.ListTitle {

color: #244;

font-weight: bold;

font-size: larger;

}

.ListActions {

font-size: x-small;

text-align: right;

padding-left: 1em;

}

.ListLine0 {

background: #e0f8f8;

}

.ListLine1 {

background: #f8b0f8;

}

4.        再次运行Productslist页面,可以看到效果,如图:

 

OK,今天的内容很简单,今后我会尽量多写些自己的东西,不光是抄书了。

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
[ruby]railstempatetags发布时间:2022-07-13
下一篇:
Docker搭建Redis4.0主从集群(不使用Ruby脚本,无哨兵)发布时间:2022-07-13
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap