2012-09-07 62 views
4

我有一個JavaScript數組的JavaScript數組傳遞給和YII行動像如何通過Ajax

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) }', 
     ), 
    ), 
)); 
+1

請出示在OrderController的類函數代碼actionAjaxUpdateOrder – Sergey

+0

我只是想在它訪問值。沒有什麼比 –

+0

你有警報(數據)?它是執行? – Sergey

回答

3

前綴「JS:」到「數據」屬性..像下面

'ajax' => array(
      'type' => 'POST', 
      'url' => $this->createUrl('order/AjaxUpdateOrder', 
             array('val' => 'profile')), 
      'success' => 'function(data) { alert(data) }', 
      'data' => 'js:orderItems', 
      'processData' => false, 
    ),