2013-04-24 70 views
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 

回答

1

您要添加控制器到控制器的名字。

<%=link_to image_tag(phone.image, :class => 'list_image'),:controller => 'phones_feature', :action => 'index', :id=>phone.id %> 

檢查url_for documentation

+0

是我phones_feature_controller好? – cihad 2013-04-24 17:28:50

+0

您的方法看起來不錯,請參閱http://guides.rubyonrails.org/action_controller_overview.html#methods-and-actions獲取簡介。請記住,您需要繼承ApplicationController。 – 2013-04-30 09:31:36

相關問題