我有一个名为 User 的 ActiveRecord 类。我正在尝试创建一个名为的关注点Restrictable
,它接受一些这样的参数:
class User < ActiveRecord::Base
include Restrictable # Would be nice to not need this line
restrictable except: [:id, :name, :email]
end
然后我想提供一个实例方法restricted_data
,该方法可以对这些参数执行一些操作并返回一些数据。例子:
user = User.find(1)
user.restricted_data # Returns all columns except :id, :name, :email
我该怎么做呢?