How to use the “number_to_currency” helper method in the model rather than view?

后端 未结 11 1711
有刺的猬
有刺的猬 2021-01-30 03:59

I would like to use to_dollar method in my model like this:

module JobsHelper      
  def to_dollar(amount)
    if amount < 0
      number_to_cur         


        
11条回答
  •  南笙
    南笙 (楼主)
    2021-01-30 04:23

    Helper methods are generally used for View files. It is not a good practice to use these methods in Model class. But if you want to use then Sam's answer is ok. OR I suggest you can write your own custom method.

提交回复
热议问题