I have routes.rb:
resources :user
#that have default
# path verb
# user_index get "user#index''
# post "user#create"
#new_user get "user#new"
for moment i using method "new" as new.htmk(form login)&"create" as process get data from db.
new.html.erb
<%=form_for :blog,url: user_index_path do lbl%>
........
user_controller.rb
def new
@blog = Box.new
end
#procces login
def create
@b =Box.find_by(search_params)
.....
end
if i try make routes like this
get '/user/login',to: "user#login"
that only for view html verb get,how make process it that verb post like deafult routes? thank you.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/0081dcc1-7998-497f-988c-12d9c38e8a04%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment