我有一个名为“配置文件”的模型。
我只想显示基于 current_user.id 的配置文件,因此当用户转到 /profiles 时,它将“显示”配置文件而不是列出配置文件。
Profile 在模型中有 user_id 列。
Profile 的控制器当前设置为:
class ProfileController < ApplicationController
before_filter :authenticate_user!
def index
@profiles = Profile.where(user_id:current_user.id)
end
def show
@profile = Profile.find(params[:id])
end
我查看了 Active Records 查询方法,但找不到合适的答案。