好的,我在rails中有以下型号:
我可以访问shard.reality.space.first.properties,但是如果以这种方式访问过,我希望能够从属性模型中的自定义方法访问“shard”id。
有没有办法做到这一点?
答案 0 :(得分:0)
class Property < ActiveRecord::Base
belongs_to :space
def custom_method
space.reality.shard.id if space.reality.shard
end
end