RoR sessions

K

Ken Fettig

Hello, how do I access session values from a view in Rails? I have tried <%=
#{@session[:user].userid'} but this causes a Rails error when it tries to
render the View. How do I code this correctly?

Thanks much
Ken
(e-mail address removed)
 
B

balcer

Ken Fettig napisa³(a):
Hello, how do I access session values from a view in Rails? I have tried <%=
#{@session[:user].userid'} but this causes a Rails error when it tries to
render the View. How do I code this correctly?

Thanks much
Ken
(e-mail address removed)
I have no becouse I'am at work now and can not check it.

1) all code that is between <% %> is just a ruby code
so <%=session[:user].userid%> would be better idea

2) #{@session[:user].userid' - what is ' on the end of line - this for
sure will give you and error

3) #{some_value} this one you use only inside string so
<%
years=10
%>
<p>#{years.to_s}</p>

Cheers, Jacek
P.S. I see that you should read a little bit more about eruby.
 
K

Ken Fettig

Thank you very much for the help. Could you point me to some good info on
eruby?

Thanks again
Ken

balcer said:
Ken Fettig napisa³(a):
Hello, how do I access session values from a view in Rails? I have tried
<%=
#{@session[:user].userid'} but this causes a Rails error when it tries to
render the View. How do I code this correctly?

Thanks much
Ken
(e-mail address removed)
I have no becouse I'am at work now and can not check it.

1) all code that is between <% %> is just a ruby code
so <%=session[:user].userid%> would be better idea

2) #{@session[:user].userid' - what is ' on the end of line - this for
sure will give you and error

3) #{some_value} this one you use only inside string so
<%
years=10
%>
<p>#{years.to_s}</p>

Cheers, Jacek
P.S. I see that you should read a little bit more about eruby.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,152
Latest member
LorettaGur
Top