0

这应该很容易。

我有@restaurants,其中包含来自餐厅模型的选定数量的记录。每个餐厅都有一个或多个位置。我想将与@restaurants 中的所有餐厅对应的所有位置存储在一个实例变量中。

这不起作用:

@locations = @restaurants.locations

我应该怎么办?

4

1 回答 1

3
@locations = Location.where(restaurant_id: @restaurants).all
于 2012-05-04T20:02:07.327 回答