0
我無法在Ruby ob Rails應用程序中的多個控制器之間共享視圖。 請幫忙。在多個控制器之間共享視圖
我無法在Ruby ob Rails應用程序中的多個控制器之間共享視圖。 請幫忙。在多個控制器之間共享視圖
您可以在視圖中使用這個你想呈現另一種觀點
abc - The name of the folder in which the other view exists (views/abc/view_name.html.erb)
xyz - The name of the view
<%= render :template "abc/xyz" %>
你甚至可以用諧音或明確呈現另一個模板在控制器的action.eg: -
def UsersController < ApplicationController
def index
@records = User.all
render '/products/index' # instead of user's index i rendered product's index template
end
end