AJAX调用变量

时间:2013-01-16 21:34:39

标签: javascript jquery twig

  

可能重复:
  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);
});

0 个答案:

没有答案