helper_method
在controller里面的method不能在view里面用。
也就是在
|
|
view里面不能用
|
|
拉这个cart出来直接用。
怎么办?
在controller里用helper_method
宣告这是一个controller级的helper。
|
|
这样你就能在view里面用current_cart
。
|
|
黄鸿亮的博客
在controller里面的method不能在view里面用。
也就是在
|
|
view里面不能用
|
|
拉这个cart出来直接用。
在controller里用helper_method
宣告这是一个controller级的helper。
|
|
这样你就能在view里面用current_cart
。
|
|