我的URL是:/students/information?name='john'
在我的应用程序中,student是模型,而information不是模型。
我的路线是这样的:
resources :students do
get :information, on: :collection
end
我可以为这个URL创建polymorphic_url吗?在我的学生/索引页中,我有这样的polymorphic_url。(用于分页链接)
<%=
polymorphic_url(
Student,
name: params[:name]
)
%>
1条答案
按热度按时间vi4fp9gy1#