我只想返回属于用户的元素。该user_id
值是来自运行的列。我想要的runs
是从current_user
.
def index
@runs = Run.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @runs }
end
end
正如尝试过的那样
@runs = Run.where(user_id= => current_user.id)
但它没有奏效。我该怎么做?