I just want to pass a javascript variable to a twig path. Now i'm using this, but it doesn't work.
<p id="result"></p>
<script>
var text = "";
var i;
for (varJS = 0; varJS < 5; varJS++) {
text += "<a href='{{ path('lesson',{'id': varJS }) }}'>article</a>";
}
document.getElementById("result").innerHTML = text;
</script>
for (varJS = 0; varJS < 5; varJS++) {
var url = '{{ path("lesson", {'id': 'article_id'}) }}';
url = url.replace("article_id", varJS);
text += '<a href='+ url +'>article</a>';
}
Note You should really look at the FOSJsRoutingBundle.
According to Chalasr's answer.
I've done this thrick using :
<script>
var your_js_variable = 5;
`{{ path("deletePFTaxeSpeciale",{'id' : 'idCarburant' }) }}`.replace('idCarburant', your_js_variable)
<script>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With