在我的Ajax中我收到数据:
$.ajax({
type: "GET",
url: Routing.generate('index', {page}),
success: function (data) {
console.log(data.data[0].isbn);// print expecting value well
$('#foo').append("<a href=\"{{ path('foo', { 'id': data.data[0].isbn }) }}\">");
//Exception: Variable "data" does not exist
此脚本位于twig文件中导致:
例外:变量&#34;数据&#34;不存在
如何准备包含twig和javascript变量的append()内容?