I want to check when my object @objectname is not equal to null to show the values of the @objectname else to show that no values found.
I tried this:
<% if (@objectname != null) then %>
but I’m getting an error.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
it’s
nilin Ruby, notnull. And it’s enough to sayif @objectnameto test whether it’s not nil. And nothen. You can find more onifsyntax here:http://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Control_Structures#if