我有一个对话框在 symfony2 中显示信息。这个对话框有 2 个按钮,当我单击一个按钮时,我想调用一个带有在视图中显示的参数的函数......如何传递这个参数?
这是对话框中的视图
<p>Empresa: {{ company }}</p>
<p>Idea: {{ idea.getName() }}</p>
{% for pago in pagos %}
<p>
<b> Nombre:</b> {{pago['name']}} </br>
<b> Puntos:</b> {{pago['win']}} i+ </br>
</p>
{% endfor %}
我想通过公司
这是我的 javascript
$("a[rel='buy']").click(function(){
$("#buy").load($(this).attr('href')).dialog({
height: 310,
width: 660,
modal: true,
buttons: {
"Buy": function(){
$(this).load("{{path('AddingPurcharse')}}"
);
},
cancel : function(){
$(this).dialog("close");
}
}
});
return false;
});
我想传递公司的价值,将其传递给功能AddingPurcharse
$(this).load("{{path('AddingPurcharse', 'company' : company)}}"