我正在尝试使用 ng-pluralize 根据 yml 翻译有条件地显示 HTML。不幸的是,ng-pluralize 忽略了 HTML,并显示为插入计数的字符串文字。有可能做我想做的事吗?
HAML
%span(ng-if="user.streak_count" ng-pluralize
count="user.streak_count" when="{'1': #{t('.one_streak_html')},
'other': #{t('.streak_html')} }")
YML
streak_html: "'<b>{}</b> days in a row'"
one_streak_html: "'<b>{}</b> day in a row'"
显示
<b>2</b> days in a row