我有兩個控制器命名爲:lists_controller.rb
和articles_controller.rb
。如何在其他控制器視圖中使用One控制器方法?
並在articles/index.html.rb
下查看。
我想在articles/index.html.rb
中使用list_controller.rb
中的元素。 我在lists_controller.rb
方法如下:
def index
@lists = List.all
end
我想在articles/index.html.rb
使用@lists
遍歷所有的元素下@lists
例如在articles/index.html.rb
視圖下articles_controller.rb
您需要在'articles_controller'的'index'方法中定義'articles'/articles.html.rb'中使用'@ lists'的方法' – Pavan
謝謝。我知道這只是basic.But不能在合適的時間。 – ashr81