4

ハンドルバー Java テンプレート エンジンの式の横にある { または } 記号をエスケープする方法を理解できません。

私はハンドルバー テンプレートを使用してプレーン テキストを生成しているため、中括弧の HTML ASCII コードを使用することはできませ

\{{{variable.name}}\}に解決されるような表現が必要{variable.value}です。そのためのヘルパーを作成する必要がありますか、それともよりクリーンな方法がありますか?

4

2 に答える 2

3

エスケープの例をいくつか示します。最後のメソッドはヘルパーを使用してエスケープします (他のメソッドが使用できない場合)。

$(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)  : &#123;{{textexample1}}&#125;<br/>
Solution with helper : {{#surroundWithCurlyBraces textexample1}}{{/surroundWithCurlyBraces}}
</script>
<br/>
<div id="resultPlaceholder">
</div>

于 2018-08-27T06:41:00.000 に答える
1
{{myvar}}{{append '' '}'}}

ここからヘルパーを追加します: https://www.npmjs.com/package/handlebars-helpers#string

于 2019-07-31T21:21:15.403 に答える