我在我的主页上显示了 4 张图片,当用户点击其中一张时,我想更改一个参数:在我的数据库中询问。
在我看来,我添加了
<%= link_to image_tag(friends.picture), {:controller => "static_pages", :action => "recomend", :id => friends.user_id} %>
在 Static_Pages_Controller 我有
def recomend
a = Friends.find_by_user_id(params[:id])
a.update_attribute(:asked, true)
end
在 routes.rb 中
resources :static_pages do
resources :recomend
end
但是当我点击它时,服务器刷新我的家(为什么?!)并且在服务器日志中我看到
Started GET "/auth/failure?action=recomend&controller=static_pages&id=101" for 127.0.0.1 at 2012-11-17 19:59:25 +0100.