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