我有一个用户提交的表单。表单适用于用户。我的routes.rb文件中包含以下内容:
resources :users, :except => [:new]
root :to => 'pages#home'
match '/contact', :to => 'pages#contact'
match '/about', :to => 'pages#about'
match '/help', :to => 'pages#help'
在users_controller.rb中:
def create
@title = "Home"
@user = User.new(params[:user])
respond_to do |format|
if @user.save
format.html { redirect_to user_path(@user), :flash => {:success => "Your friend's details have been saved.The surprise has begin"} }
format.js
else
format.html { render :template => 'pages/home'}
format.js
end
end
end
此表单是使用常规POST请求而非Ajax提交的。
我想知道为什么在成功提交表单而不是Show之后请求更新模板。
佣金路线的输出如下:
users GET /users(.:format) {:action=>"index", :controller=>"users"}
POST /users(.:format) {:action=>"create", :controller=>"users"}
edit_user GET /users/:id/edit(.:format) {:action=>"edit", :controller=>"users"}
user GET /users/:id(.:format) {:action=>"show", :controller=>"users"}
PUT /users/:id(.:format) {:action=>"update", :controller=>"users"}
DELETE /users/:id(.:format) {:action=>"destroy", :controller=>"users"}
root /(.:format) {:controller=>"pages", :action=>"home"}
contact /contact(.:format) {:controller=>"pages", :action=>"contact"}
about /about(.:format) {:controller=>"pages", :action=>"about"}
help /help(.:format) {:controller=>"pages", :action=>"help"}
提前致谢。
答案 0 :(得分:0)
您的路由和控制器代码看起来不错,即应该将您发送到users_controller中的show方法。我在那里放了一些debbugging代码,即logger.debug("Inside Show")
,看看是否正在调用show方法。
您还可以在编辑的问题中包含rake routes
的输出,显示user_path帮助程序将发送重定向的位置可能会提供信息。
伊恩。
答案 1 :(得分:0)
控制器的代码和此表单的视图是什么?生成表单时是否存在现有用户对象,或者是否创建了新的用户对象(即控制器中的@user = User.new)?如果有现有用户,则表单将提交更新。