练习题:在购物车的每个商品旁添加按钮,按一下减一个,数量为0删除该商品。先用普通方法再用Ajax支持。
1.自定义方法decrease, 为其设定路径routes.rb。 在resouurces :line_items的块中加put ‘decrease‘, on: :member
2.在controller中定义这个方法。
- 注意??:因为要用到render @cart渲染首页侧边栏,所以需要在action中声明实例变量@cart. 这里有前期模块CurrentCart中的方法set_cart,通过before_action,使用set_cart.
- 减到一本时要用destroy方法。
- respond_to 块中加 format.js
3. view模版中定义一个decrease.js.erb。用jquery: $(‘#cart‘).html("<%= j render(@cart) %>");