我正在尝试将数字格式化为 Rails 助手(app/helpers/emails_helper.rb)中的货币或小数点后 2 位
module EmailsHelper
def email_message(invoice)
message = "PO: #{invoice.po_number}\nAmount: #{number_to_currency(invoice.total)}"
return message
end
end
当我尝试这个时,我收到以下错误:
undefined method `number_to_currency' for #<EmailsController:0x00000102b88640>
我假设这是因为文件是 rb 而不是 erb 但不确定如何处理。