如何正确访问belongs_to模型的属性
使用以下类及其关联。
class Repository
include DataMapper::Resource
property :id, Serial
property :name, String
has n, :branches
end
class Branch
include DataMapper::Resource
property :id, Serial
property :note, String
belongs_to :repository
end
# Simple creation of a repository and branch belonging to said repository
repo = Repository.new
repo.name = "Bob"
branch = repo.branches.new
branch.note = "Example Note"
repo.save
# Print the repo->branch's note
puts repo.branches.first.note # Prints "Example Note"
# Print the branch->repo name
puts branch.repository.first.name # Does not work
puts branch.repository.name # Does not work
我可以从 Repository 访问属性(例如:Repository.first.branches.first.note
)。
我似乎无法从分支访问属性,从分支获取存储库的名称(例如:Branch.first.repository.first.name
)。
** 已解决 ** 事实证明,我实际上无法使用 Repository 作为我的类名,因为 DataMapper 已经使用它 (API)。解决方案是简单地重命名我的类,然后一切都按预期工作。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能使用类名Repository,因为 DataMapper 已使用它(API)。解决方案是简单地重命名该类,然后一切都按预期工作。
You cannot use the class name Repository as DataMapper already uses it (API). Solution is to simply rename the class and then it all works as intended.