gpt4 book ai didi

ruby-on-rails - 如何在模型而不是 View 中使用 "number_to_currency"辅助方法?

转载 作者:行者123 更新时间:2023-12-03 05:01:08 24 4
gpt4 key购买 nike

我想在我的模型中使用 to_dollar 方法,如下所示:

module JobsHelper      
def to_dollar(amount)
if amount < 0
number_to_currency(amount.abs, :precision => 0, :format => "-%u%n")
else
number_to_currency(amount, :precision => 0)
end
end
end

class Job < ActiveRecord::Base
include JobsHelper
def details
return "Only " + to_dollar(part_amount_received) +
" out of " + to_dollar(price) + " received."
end
end

不幸的是,这里无法识别number_to_currency方法:

undefined method `number_to_currency' for #<Job:0x311eb00>

有什么想法可以让它发挥作用吗?

最佳答案

我同意你们所有人的观点,这可能会破坏 MVC 模式,但总有理由打破模式,在我的例子中,我需要这些货币格式化程序方法使用它们模板过滤器(在我的例子中是液体)。

最后我发现我可以使用如下方式访问这些货币格式化程序方法:

ActionController::Base.helpers.number_to_currency

关于ruby-on-rails - 如何在模型而不是 View 中使用 "number_to_currency"辅助方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5176718/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com