In my rails application when I trigger a Ajax request with my
javascript in below way
$j.ajax({
type: "POST",
url: "https://fbapp.pinkienow.com/requests",
data: "requstids="+response.request_ids
}).done(function( msg ) {
alert( "Data Saved: " + msg );
});
The request is firing correctly but it is not taking my old session
values of user
It is showing error that your session variable is not available in my
log
any idea why it is not taking previous session ?
and how to fix that ?
Thank you in advance.
--
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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.