可能重复:
Use Javascript to access a variable passed through Twig
我有一个Twig模板,我想在项目加载完成后附加项{{ item.getPrice() }}
的价格。我想通过使用AJAX在jQuery中执行此操作,但我不知道如何将变量分配给url
值以及如何将{{ item.getPrice() }}
分配给变量offerPrice
。
$.ajax ({
url: {{ item.getPrice() | json_encode | raw }}
}).done( function() {
$('#price').append(offerPrice);
});