我有 2 张桌子帖子和照片,并且有关系
post has_many :photos
photos belongs_to :posts
我通过角度加载帖子并将它们显示给用户并且所有内容都很完美但是当我尝试显示照片时它们只是不显示我正在使用的代码
...loop through results
//this works
<h2>{{post.title}}</h2>
//this doesn't
<img src="{{post.photos.first.image}}" />
...end
我一直在使用 Ruby on Rails,这是他们使用的语法,我知道它可能是错误的,但有人知道正确的语法吗?谢谢