Ruby on rails開發從頭來(windows)(十三)-訂單(Order)

來源:互聯網
上載者:User
 

在上次的內容裡,我們編寫了CHECKOUT的處理。這次我們將顯示購物車和訂單放在一個頁面上表示,這樣使用者在下訂單的時候就可以很方便地看到自己的購物情況。

 

1.         修改checkout.rhtml檔案,只要添加一句代碼:

<%= error_messages_for("order") %>

<%= render_component(:action => "display_cart") %> ――這句 

<%= stylesheet_link_tag "scaffold", "depot", :media => "all" %>

在display_cart頁面上點擊“checkout”連結,可以看到checkout頁面已經發生了改變,


         
2.         但是我們看到,在頁面的右上方,Checkout連結還顯示著,我們當然要把它去掉。回到上面添加的那句代碼:

<%= render_component(:action => "display_cart") %>

render_component實際上是把整個display_cart頁面全部顯示了,現在我們來添加參數,讓它能區分是在display_cart頁面還是在checkout頁面。

在checkout頁面上,把上面添加的代碼改為:

<%= render_component(:action => "display_cart",:params => { :context => :checkout }) %>

可以看到我們添加了一個context參數。

下面要修改store_controller.rb檔案,修改display_cart方法為:

def display_cart

@cart = find_cart

@items = @cart.items

if @items.empty?

redirect_to_index("Your cart is currently empty")

end

if params[:context] == :checkout

render(:layout=> false)

end

end

然後修改display_cart.rhtml頁面,對context參數為checkout的情況做出判斷,然後作對應的顯示:

將原來的代碼:

<ul>

    <li><%= link_to 'Continue shopping', :action => "index" %></li>

    <li><%= link_to 'Empty cart', :action => "empty_cart" %></li>

    <li><%= link_to 'Checkout', :action => "checkout" %></li>

</ul>

修改為:

<ul>

    <li><%= link_to 'Continue shopping', :action => "index" %></li>

    <% unless params[:context] == :checkout -%>

            <li><%= link_to 'Empty cart', :action => "empty_cart" %></li>

            <li><%= link_to 'Checkout', :action => "checkout" %></li>

    <% end -%>

</ul>

OK了,現在來看看效果,

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.