货币过滤器
Money filters 根据 Shoplazza 管理后台中定义的货币格式对价格进行格式化。
money_with_symbol (money)
number |
money_with_symbol
returns string
格式化给定的价格。
📘 提示
该 filter 的别名为
money
{{ product.price | money }}
{{ product.price | money_with_symbol }}
{
"product": {
"price": "12.88"
}
}
$12.88
$12.88
money_without_currency
number |
money_without_currency
returns string
格式化给定的价格,不含货币符号。
{{ product.price | money_without_currency }}
{
"product": {
"price": "12.88"
}
}
12.88