2
<td>
<%=link_to image_tag(phone.image, :class => 'list_image'), :controller => 'phones_feature_controller', :action => 'index', :id => phone.id %>
</td>
我想有一個圖像鏈接到另一個控制器。 此鏈接位於我的索引頁面,其控制器爲phone
。我有另一個控制器phones_feature
。我想有一個鏈接到phones_feature
的索引頁導軌鏈接到另一個控制器
我phones_feature_controller:
def index
@phones=Phone.find(params[:id])
respond_to do |format|
format.html # index.html.erb
format.json { render json: @phones }
end
end
是我phones_feature_controller好? – cihad 2013-04-24 17:28:50
您的方法看起來不錯,請參閱http://guides.rubyonrails.org/action_controller_overview.html#methods-and-actions獲取簡介。請記住,您需要繼承ApplicationController。 – 2013-04-30 09:31:36