Rails - 模型更新小数 - 从数据库渲染舍入值

发布于 2024-10-21 15:55:19 字数 306 浏览 2 评论 0原文

我的模型 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁把谁当真 2024-10-28 15:55:19

您的迁移是什么样的?您可以提示 Rails 在迁移中创建一个具有设定比例和精度的小数字段,这样就不会出现意外舍入的值:

t.decimal :amount,  :precision => 6, :scale => 2

至于让 Rails 在保存后使用数据库中的数据,您只需添加一个像这样调用 reload

if @offer.save
  @offer.reload
  ...
else
  ...
end

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:

t.decimal :amount,  :precision => 6, :scale => 2

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:

if @offer.save
  @offer.reload
  ...
else
  ...
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文