模型
class Product < ActiveRecord::Base belongs_to :category belongs_to :frame belongs_to :style belongs_to :lenses attr_accessible :description,:priceend
<% @product.each do |p| %><%= p.category %><% end %>
调节器
def sunglass @product = Product.allend解决方法 您需要指定要显示的类别列的哪一列.例如,名为name的列:
<% @product.each do |p| %> <%= p.category.name %><% end %>
否则它将返回对象…换句话说,所有列{ID:1,name:’blabla’等}
也,
class category < ActiveRecord::Base has_many :productsend总结
以上是内存溢出为你收集整理的ruby-on-rails – Rails:如何访问视图中的belongs_to字段?全部内容,希望文章能够帮你解决ruby-on-rails – Rails:如何访问视图中的belongs_to字段?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)