Rails - 模型更新小数 - 从数据库渲染舍入值
我的模型 Offer 中有一个名为 label_length 的小数字段,具有一位小数。保存到数据库时,该值会四舍五入。
一条记录已存储在数据库中。我正在编辑报价模型的表单。现在我将 123.45 输入文本字段并点击按钮。保存后,我再次使用文本字段呈现编辑操作。在 label_length 的文本字段中,我再次找到值 123.45,尽管 123.5 已存储在数据库中。
看来控制器中的@offer在调用offer.update_attributes(params[:offer])后没有更新
有没有办法显示当前数据库值?
谢谢 马克
I have a decimal field called label_length in my model Offer with one decimal place. The value gets rounded when saved into the database.
A record is already stored in the database. I’m in the edit form for my Offer model. Now I put 123.45 into the text field and hit the button. After saving I render the edit action again with the text field. In the text field for label_length I find the value 123.45 again although 123.5 is stored in the database.
It seems that @offer in the controller is not updated after calling offer.update_attributes(params[:offer])
Is there a way to display the current database value?
Thanks
Marc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的迁移是什么样的?您可以提示 Rails 在迁移中创建一个具有设定比例和精度的小数字段,这样就不会出现意外舍入的值:
至于让 Rails 在保存后使用数据库中的数据,您只需添加一个像这样调用
reload
:What does your migration look like? You can prompt Rails to create a decimal field with a set scale and precision in your migration so that you don't have values unexpectedly rounded:
As far as getting Rails to use the data from the database after saving, you can simply add in a call to
reload
like so: