在 Rails 上验证有限状态机(使用 AASM)
我正在使用 Rubyist 的 AASM 为 AR 对象构建一个 4 步向导。 根据对象的状态,需要进行不同的验证。 根据对象在特定转换上的状态来验证对象的最聪明方法是什么?
I'm using AASM by Rubyist to build a 4-step wizard for an AR object. According to the state of the object, there are different validations that need to be done. What is the smartest way to validate an object according to it's state on a certain transition?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
:if
选项和with_options
将它们聚集在一起。显然,您应该在 if-proc 中编写的内容取决于您的实现。
Use the
:if
option, andwith_options
to bunch 'em together.What exactly you ought to write in the if-proc depends on your implementation, obviously.