我正在开发一个非常基本的购物车系统。
我有一个表items,它的列价格类型为整型。
我在视图中显示包含欧元和美分的价格时遇到了麻烦。在Rails框架中处理货币时,我是否遗漏了一些明显的东西?
我正在开发一个非常基本的购物车系统。
我有一个表items,它的列价格类型为整型。
我在视图中显示包含欧元和美分的价格时遇到了麻烦。在Rails框架中处理货币时,我是否遗漏了一些明显的东西?
当前回答
您可能希望在数据库中使用DECIMAL类型。在迁移过程中,执行如下操作:
# precision is the total number of digits
# scale is the number of digits to the right of the decimal point
add_column :items, :price, :decimal, :precision => 8, :scale => 2
在Rails中,:decimal类型返回为BigDecimal,这对于价格计算非常有用。
如果您坚持使用整数,那么您将不得不在所有地方手动转换为bigdecimal,这可能会成为一个麻烦。
正如mcl所指出的,要打印价格,请使用:
number_to_currency(price, :unit => "€")
#=> €1,234.01
其他回答
你可以将一些选项传递给number_to_currency(一个标准的Rails 4视图帮助器):
number_to_currency(12.0, :precision => 2)
# => "$12.00"
由Dylan Markow发布
如果有人正在使用Sequel,那么迁移将会是这样的:
add_column :products, :price, "decimal(8,2)"
Sequel忽略了:precision和:scale
续作版本:续作(3.39.0,3.38.0)
处理货币的常见做法是使用十进制类型。 下面是“使用Rails进行敏捷Web开发”中的一个简单示例。
add_column :products, :price, :decimal, :precision => 8, :scale => 2
这将允许您处理从-999,999.99到999,999.99的价格 你可能还想在你的项目中包括一个验证,比如
def validate
errors.add(:price, "should be at least 0.01") if price.nil? || price < 0.01
end
检查你的价值观。
您可能希望在数据库中使用DECIMAL类型。在迁移过程中,执行如下操作:
# precision is the total number of digits
# scale is the number of digits to the right of the decimal point
add_column :items, :price, :decimal, :precision => 8, :scale => 2
在Rails中,:decimal类型返回为BigDecimal,这对于价格计算非常有用。
如果您坚持使用整数,那么您将不得不在所有地方手动转换为bigdecimal,这可能会成为一个麻烦。
正如mcl所指出的,要打印价格,请使用:
number_to_currency(price, :unit => "€")
#=> €1,234.01
使用Virtual Attributes(链接到修订的(付费)Railscast),您可以将price_in_cents存储在一个整数列中,并在您的产品模型中添加虚拟属性price_in_dollars作为getter和setter。
# Add a price_in_cents integer column
$ rails g migration add_price_in_cents_to_products price_in_cents:integer
# Use virtual attributes in your Product model
# app/models/product.rb
def price_in_dollars
price_in_cents.to_d/100 if price_in_cents
end
def price_in_dollars=(dollars)
self.price_in_cents = dollars.to_d*100 if dollars.present?
end
来源:RailsCasts #016:虚拟属性:虚拟属性是添加不直接映射到数据库的表单字段的一种干净的方式。在这里,我将展示如何处理验证、关联等。