0
jQuery経由でhtmlを挿入しようとしていますが、その小枝はテキストとしてエスケープされています。それは、jqueryと追加されたときに小枝をエスケープする方法はありますか?html jqueryにtwigを挿入
var html = `
{% if is_granted('ROLE_ADMIN') and app.user %}
<div class="col-sm-1 col-md-1">
<div class="form-group">
<div class="dropup">
<a class="btn btn-primary btn-sm" href="{{ path('easyadmin')}}"><i class=" glyphicon glyphicon-dashboard"></i> Administrar sistema</a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-1 col-md-offset-7">
<div class="form-group">
<i id ="hide-footer" class="glyphicon glyphicon-remove white gi-2x"></i>
</div>
</div>
{% endif %}`
$('#reshow-footer').append(html);
すてきなアイデアは、{{path( 'easyadmin')}}と他の小枝のvarsはどうですか? – fcpauldiaz
あなたが小枝ファイルに入っているときは、必要なときはどこでも小枝コードを書くことができます(中括弧やその他の記号の間にはもちろんです) –