Ruby on Rails Thursday, May 28, 2015

Hi,

I've list of features.

class Feature < ActiveRecord::Base
 has_many
:assets, dependent: :destroy
end

and assets, that belongs to feature:

class Asset < ActiveRecord::Base
  belongs_to
:feature
  validates
:feature_id, presence: true
end

i have one sample feature in db, and a link to show assets for this feature:

<td><%= link_to 'Show Assets', assets_path %></td>

Now, when i follow the link, list of assets is shown. Actually it is empty, as there are no assets in database. I need to show what feature this assets are belongs to (there're no assets, but that shouldn't make any difference).

I've tried with this:

<h1>Listing Assets for <%= asset.feature.try(:engtitle) %></h1>

getting 

undefined local variable or method `asset' for #<#<Class:0xb4ce52e8>:0xb55c4440>

and this

<h1>Listing Assets for <%= @feature.try(:engtitle) %></h1>

raising exception, but there's definitely engtitle for this feature in database.

What am i doing wrong?

Thanks

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/9e5125b8-84a0-4744-ac82-bb10c122bbe5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment