I have two files. .rb(with ruby code) and .erb(HTML file with some ruby script). I am calling a ruby fuction in .rb from .erb.

.erb

<a href="<%= url_for :action => :showProducts(i) %>">Click here</a> 

.rb

def showProducts(param)

//Some code

end

Problem:
I am able to call a function without passing parameters to it. But as and when I pass parameters to function and then call it, I receive an error. I know this is the incorrect way to call a parametrized function from .erb. Please help with the correct way of calling a parametrized function from HTML.
Thanks,
Nitish

link|improve this question

Looks like your syntax is correct. What's not working? What errors are you getting? – Marnen Laibow-Koser Nov 15 '11 at 15:10
It just comes as "Error loading page." – Nitish Nov 16 '11 at 4:15
Then you'll find more details in the log. What does that say? – Marnen Laibow-Koser Nov 16 '11 at 4:24
When I try debugging, control doesn't go inside the function. (I tried with solution below but still no success). – Nitish Nov 16 '11 at 4:37
Yes, and as I asked in the previous question, what does the log say? Not the debugger -- the log? – Marnen Laibow-Koser Nov 16 '11 at 4:39
show 5 more comments
feedback

2 Answers

If you add in another key/value pair to the hash in url_for

<%= url_for :action => :showProducts, :product => "toaster" %>

Your URL should go from, say, http://localhost:3000/showProducts to http://localhost:3000/showProducts?product=toaster

Here, we're adding parameters to the GET request. To access these parameters in the controller we use the params hash. For example to get the product (toaster):

params[:product] #=> "toaster"
link|improve this answer
feedback
up vote 0 down vote accepted

I found the solution to my problem :

<a href="<%= url_for :action => :showProducts, :id=> 'Hello' %>">  

.rb function:

def showProducts(param)

//Some code

end
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.