如何在 Django 中获取未来发布的帖子?
我只想在 Django 中做一个基本网站,而 Flatpages 应用程序非常简单,但它不支持我需要的一些功能,即自定义字段和未来约会。 这是将发布日期设置为未来的某个时间,而不是立即发布。
在 Django 中获取未来发布的帖子的最佳选择是什么?
I just want to do a basic site in Django and the flatpages app is super simple, but it doesn't support a couple of things that I need, namely custom fields and future-dating. That is setting a publish date to some point in the future rather than publishing immediately.
What's the best option for getting future-dated posts in Django?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题的答案与你的问题“有什么比 Flatpages 更好吗?”相同。
django-cms 允许您以分层结构排列平面页面,并让您设置未来的发布日期。
我假设您所说的自定义字段是指用户定义的字段? 如果是这样,那么您必须自己在 django-cms 之上实现它。
The answer to this question is the same as your question "Is there anything better than Flatpages?"
django-cms allows you to arrange your flatpages in a hierarchical structure and lets you set a future publish date.
By custom fields I assume you mean fields defined by users? If so then you'll have to implement that yourself on top of django-cms.