手把,空白控制

前端之家收集整理的这篇文章主要介绍了手把,空白控制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要精细控制空白,但仍然有可读模板.

只是想看看其他人的解决方案是通过简单的用例.

{{name}}
{{#if age}},{{age}}
{{/if}}

# outputs {{name}},{{age}}
# desire: {{name}},{{age}}

https://github.com/wycats/handlebars.js/issues/479 – 提交了关闭的机票.

解决方法

按照 the pull request to add this feature的历史记录,看起来这是正确的语法:
<h4>
{{~#object~}}

Surrounding whitespace would be removed.

{{/object}}
</h4>

结果:

</h4>Surrounding whitespace would be removed.</h4>

还有这种语法只修剪引导空格:

<h4>
{{~#object}}

Only leading whitespace would be removed.

{{/object}}
</h4>

结果:

</h4>Only leading whitespace would be removed.
</h4>
原文链接:https://www.f2er.com/js/153216.html

猜你在找的JavaScript相关文章