从 mongodb 动态(即时)生成 django 模型
我希望能够生成一些 mongoDB 集合的 html 表示,例如简单的表。
是否可以在没有固定模型的情况下做到这一点,因为事先没有已知的集合结构。
这里最好的方法是什么?
我正在使用 django-mongodb 以及 django-nonrel
I want to be able to generate html representation of some mongoDB collection, say simple table.
is it posible to do this without fixed models, because there is no known collection structure in advance.
What would be best approach here?
I'm using django-mongodb along with django-nonrel
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 mongodb 知之甚少,因为我知道你得到 dict 作为查询结果。
主要问题是应该封装什么模型?
旧时尚方式:
死脑细胞方法:
我认为,拥有查询集对象会很好,但这并不那么容易,至少对我来说。
I have very little knowledge about mongodb, as I understand you get dict as query result.
Main question is what model should encapsulate ?
Old fashion way:
Dead brain cells method:
I think, it would be nice to have queryset objects, but this is not that easy, at least for me.