ruby-on-rails – Rails:如何访问视图中的belongs_to字段?

ruby-on-rails – Rails:如何访问视图中的belongs_to字段?,第1张

概述鉴于下面的MVC结构,我如何访问:category?我将它添加到attr_accessible列表并重新启动服务器,但调用p.category仍然不返回任何内容.我相信你的Rails专家会知道发生了什么.提前致谢! 模型 class Product < ActiveRecord::Base belongs_to :category belongs_to :frame belongs_t 鉴于下面的MVC结构,我如何访问:category?我将它添加到attr_accessible列表并重新启动服务器,但调用p.category仍然不返回任何内容.我相信你的Rails专家会知道发生了什么.提前致谢!

模型

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字段?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1293948.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-10
下一篇 2022-06-10

发表评论

登录后才能评论

评论列表(0条)

保存