作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在使用 find_all_by_
时遇到错误
controller
@books = Book.find_by_author_id(4)
View
<%= @books.name %>
这行得通。但是当我用 find_all_by_
替换 find_by_
时,我得到了这个错误
undefined method `name'
我想使用find_all_by_
来获取author_id=4
对应的所有书籍
最佳答案
Controller
@books = Book.find_all_by_author_id(4)
View
<%= @books.map(&:name).join(', ') %>
您正在获取记录的 Array
。而 Array
没有 name
方法。
关于ruby-on-rails - 使用 'find_all_by_'时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8506450/
我是一名优秀的程序员,十分优秀!