我有一个案例,我需要使用复数来正确拼写一些东西.但是,我需要像这样呈现html:
<span>1</span> thing
要么,
<span>3</span> things
我可以写一个帮助方法,但我只是确保盒子里没有东西可以做到这一点.
解决方法
这使用Rails类
TextHelper,如果需要,它使用
Inflector进行复数化.
def pluralize_with_html(count,word) "<span>#{count}</span> #{TextHelper.pluralize(count,word)}" end