对 wiki 类型功能进行建模的模式
是否有一个模式或 gem(Ruby on Rails)来对类似 StackOverflow 的网站的类似 wiki 的行为进行建模?
我正在从事 Ruby-on-Rails 项目,因此 RoR 中的 gem 或其他东西将不胜感激,但定义良好的模式也同样好。
谢谢
Is there a pattern or a gem (Ruby on rails) for modeling the wiki-like behaviour of a StackOverflow like web site?
I'm working on Ruby-on-Rails project so a gem or something in RoR would be appreciated but a well defined pattern is just as good.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过
act_as_versioned
?它作为 gem 提供,并向任何 ActiveRecord 模型添加简单的版本控制。如果您需要更多功能,
act_as_revisable
可能会很有趣。根据链接,它在act_as_versioned
的基础上添加了以下功能:Did you try
act_as_versioned
? It is available as a gem, and adds simple versioning to any ActiveRecord model.If you need more features,
act_as_revisable
might be interesting. According to the link, it adds the following features on top ofact_as_versioned
: