Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm following the Twitter for Zombies tutorial and i'm having trouble getting the link_to method to work.

In my Tweet controller I have:

@tweet = tweet.find(params['id']);

In my view i've tried the following:

<%= link_to @tweet.zombie.name, @tweet.zombie %>
<%= link_to @tweet.zombie.name, zombie_path(@tweet.zombie) %>

But I keep getting the error:

undefined method `zombie_path' for #<#<Class:0xab1fd00>:0xa1d5d80>

Any ideas whats up with this? Thanks.

share|improve this question
Does it say for which line it's erroring out on? Is it for the first or second link_to? – MrDanA Feb 16 '12 at 17:01
I only have one link_to call. It's showing an error on that line. – conor Feb 16 '12 at 17:18
Oh I see. Sorry I skimmed over the part you saying you've tried the following. I thought you meant you currently had that in there. – MrDanA Feb 16 '12 at 17:28

1 Answer

up vote 1 down vote accepted

What's in your routes.rb file? Please show us.

Do you have the line like this?

resources :zombies
share|improve this answer
This was the problem. I was missing that line. Thanks :) – conor Feb 16 '12 at 17:24
Glad that I could help :) – Phyo Wai Win Feb 16 '12 at 17:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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