我想用空格分隔货币和总额。
请建议我一个解决方案 任何帮助将不胜感激。
p
strong Total:
span
= @order.currency
= humanized_money_with_symbol @order.total_paisas/100
答案 0 :(得分:7)
您还可以使用超薄输出=>
或=<
https://github.com/slim-template/slim#output-
在第一个输出上使用尾随空格
p
strong Total:
span
=> @order.currency
= humanized_money_with_symbol @order.total_paisas/100
或在第二个输出上使用前导空格
p
strong Total:
span
= @order.currency
=< humanized_money_with_symbol @order.total_paisas/100
答案 1 :(得分:0)
verbatim text with trailing space 有特殊的语法, 那个语法只是一个单引号:
= @user.first_name
'
= @user.last_name
|
、join(' ')
和字符串插值只是变通方法。