使用 Ruby On Rails 进行事务操作
我在控制器内有一个复杂的操作,可以对数据库执行多个更新查询。
如何在不进行任何结构重构的情况下使此操作表现得像事务?
I have a complex action inside controller that performs several update queries to the database.
How can I make this action acts like transaction without any structural refactoring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可以通过以下方式同时使控制器中的所有操作成为事务性的:
It's posible to make all actions in controller transactional at once with:
以下是事务方法的文档。
Here are the docs for the transaction method.