gpt4 book ai didi

ruby-on-rails - rails 链接到另一个 Controller

转载 作者:太空宇宙 更新时间:2023-11-03 16:30:52 25 4
gpt4 key购买 nike

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

我想要一个图像链接到另一个 Controller 。这个链接在我的索引页面中,它的 Controller 是 phone。我有另一个 Controller 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

最佳答案

您正在将 Controller 添加到您的 Controller 名称中。

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

检查 url_for documentation

关于ruby-on-rails - rails 链接到另一个 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16197464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com