ハンドルバー Java テンプレート エンジンの式の横にある { または } 記号をエスケープする方法を理解できません。
私はハンドルバー テンプレートを使用してプレーン テキストを生成しているため、中括弧の HTML ASCII コードを使用することはできません。
\{{{variable.name}}\}
に解決されるような表現が必要{variable.value}
です。そのためのヘルパーを作成する必要がありますか、それともよりクリーンな方法がありますか?
ハンドルバー Java テンプレート エンジンの式の横にある { または } 記号をエスケープする方法を理解できません。
私はハンドルバー テンプレートを使用してプレーン テキストを生成しているため、中括弧の HTML ASCII コードを使用することはできません。
\{{{variable.name}}\}
に解決されるような表現が必要{variable.value}
です。そのためのヘルパーを作成する必要がありますか、それともよりクリーンな方法がありますか?
エスケープの例をいくつか示します。最後のメソッドはヘルパーを使用してエスケープします (他のメソッドが使用できない場合)。
$(document).ready(function () {
var context = {
"textexample1" : "hello",
"textexample2" : "<div><b>hello</b></div>",
"textexample3" : "{ 'json' : 'sample }"
};
Handlebars.registerHelper('surroundWithCurlyBraces', function(text) {
var result = '{' + text + '}';
return new Handlebars.SafeString(result);
});
var source = $("#sourceTemplate").html();
var template = Handlebars.compile(source);
var html = template(context);
$("#resultPlaceholder").html(html);
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/4.0.5/handlebars.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script id="sourceTemplate" type="text/x-handlebars-template">
Simple text : {{textexample1}}<br/>
Html text not escaped : {{textexample2}}<br/>
Html text escaped : {{{textexample2}}}<br/>
Json text : {{textexample3}}<br/>
Non JSON text with surrounding mustaches {} : { {{textexample1}} }<br/>
Non JSON text with surrounding mustaches (no space) : {{{textexample1}}}<br/>
Solution with helper : {{#surroundWithCurlyBraces textexample1}}{{/surroundWithCurlyBraces}}
</script>
<br/>
<div id="resultPlaceholder">
</div>
{{myvar}}{{append '' '}'}}
ここからヘルパーを追加します: https://www.npmjs.com/package/handlebars-helpers#string