Re: [Rails] last saved record not retrieving .
On 3 November 2012 11:46, Fahim Patel <pafahim@gmail.com> wrote:
>
> Hi all,
>
>
> from last 1 hour i am facing one problem.
>
> I have written a code for creating user and show them in index page after
> save.
>
> Code is working perfectly but on index page i am getting all record till
> second last record saved, but i am not getting current record which is
> saved.
>
> But in database my last record is saved successful.
>
>
> But when i restart the server , than on index page all record come with the
> last record .
>
> I dont know why this all is happening ?
Have a look at the Rails Guide on debugging, it will show you
techniques that you can use to debug your code.
Colin
> Code below
>
>
> ######## controller code
> class AdminUsersController < ApplicationController
> def new
> @admin = AdminUser.new
> end
>
> def index
> @admins = AdminUser.all
> end
>
> def create
> @admin = AdminUser.new(params[:admin_user])
> if @admin.save
>
> redirect_to admin_users_path
> else
> render "new"
> end
> end
> end
>
> ######## new view############
> <%= form_for @admin do|f|%>
>
> First Name
> <%= f.text_field :first_name%>
> <%= submit_tag"Create"%>
> <% end %>
> ######## index view############
> <%= @admins%>
>
> ##############model
> nothing in model
>
>
>
> Hope you all understand the problem .
>
>
> Thanks
>
> Regards
> Fahim Babar Patel
>
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To post to this group, send email to rubyonrails-talk@googlegroups.com.
> To unsubscribe from this group, send email to
> rubyonrails-talk+unsubscribe@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/rubyonrails-talk/-/-TdNVrabhvAJ.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home