我正在使用像
这样的javascript数组var orderItems={'1':{id:'1',name:'Shirt',qty:'0'},'3':{id:'3',name:'Shoe',qty:'0'}, };
我需要使用ajax按钮将此数组传递给一个动作。
$this->widget('bootstrap.widgets.TbButton', array(
'label' => 'Click me',
'type' => 'primary',
'htmlOptions' => array(
'data-toggle' => 'modal',
'data-target' => '#myModal',
'ajax' => array(
'type' => 'POST',
'url' => $this->createUrl('order/AjaxUpdateOrder',
array('val' => 'profile')),
'success' => 'function(data) { alert(data) }',
),
),
));
答案 0 :(得分:3)
前缀' js:'到数据'属性..如下面
'ajax' => array(
'type' => 'POST',
'url' => $this->createUrl('order/AjaxUpdateOrder',
array('val' => 'profile')),
'success' => 'function(data) { alert(data) }',
'data' => 'js:orderItems',
'processData' => false,
),