本文介绍了轨道3跳过验证和回调的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个特别复杂的模型定义的验证和回调。现在的业务需求要求一个特定的场景,添加新记录,需要跳过验证和回调。什么是做到这一点的最好方法是什么?
I have a particularly complex model with validations and callbacks defined. The business needs now calls for a particular scenario where adding a new record requires skipping the validations and callbacks. What's the best way to do this?
推荐答案
这工作在Rails 3的:
This works in Rails 3:
Model.skip_callback(:create)
model.save(:validate => false)
Model.set_callback(:create)
( API文档和的)
这篇关于轨道3跳过验证和回调的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!