Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个像这样在浏览器中显示的字符串
欧元 (€)
我从树枝打印它的方式是
{{ country.display }}
我想将 € 打印为欧元符号。
我怎样才能实现它?
{{ country.display }} {{ country.symbol | raw }}
我为符号创建了一个单独的变量,现在我可以应用“原始”过滤器并且它可以工作。