Ruby on Rails Sunday, October 16, 2016

In this action you're saying if @n render new which will always render your new view in the controller namespace. Then your else is @admin.save

That's why it's not functioning. Depending on what you are trying to do I'm assuming you want if @admin.save then a render or redirect afterwards. Your else condition should be render new.

If you can provide some more context and how this should behave I'll be happy to help further.

Sent from my iPhone

> On Oct 16, 2016, at 5:36 AM, kinoe - <kinoe48@gmail.com> wrote:
>
> controller.rb
> .....
> def create
> @admin = Box.new(admin_params)
> @n = Box.where(name: params[:name])
> if @n
> render 'new'
> else
> @admin.save
> ....
> end
>
> no error but no function.so how suggest for if input so that data not same.
>
> --
> 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/5ec2acdb-e115-4975-81f9-00230c7fac0a%40googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.

--
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/97C52DC3-7DD5-4B87-B7EC-0018FE5FAD63%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment