Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
想象一个具有属性x和属性y的类A以及具有属性Z并从其父级 A继承所有属性的类B。My Class Hello女巫是B,现在应该可以访问A和B的所有属性。每个属性都可以在每个阶段被覆盖。
继承和重载/覆盖-但我想将此类对象存储在数据库中,并通过简单的 api 进行读写访问。
有什么建议么?
MongoDB 是面向文档的,可以将数据保存为对象和数组。您必须编写函数将数据从/到 mongodb 转换为您的对象结构并使用它。
此链接向您展示如何将对象保存到数据库中