在新记录列表中保存整个(网格)记录范围

Save whole range of (grid) records in new records list

我试图在单个 ajax 请求中将整个范围的(网格)记录从商店发送到服务器,并将所有记录保存在另一个 table.

不过似乎缺少一些细节。

在客户端一个console.log(记录)显示所有要发送的对象。

在客户端echo 'console.log ("PHP:'. $ data. '")' exit; returns console.log ("PHP: ") ;

EXTJS 5

newList: function (button, e, eOpts) {

    var grid = this.lookupReference('gridRef');
    var store = grid.getStore(),

   // 

    //get whole range of records from the store
    var records = store.getRange().map(function(record) { return record.getData() }); 

    //console.log(records); // OK


    Ext.Ajax.request({
        url: 'php/newList.php?',
        method: 'POST',
        //jsonData: records,
        params:{records:Ext.encode(records)} //EDITED

        success: function(conn, response, options, eOpts) {
               console.log('Success');
        },
        failure: function(conn, response, options, eOpts) {
           console.log('Error')
        }
    });

PHP

    $records = stripslashes($_POST['records']);
    $data = json_decode($records, true);

    //var_dump($_POST);
    // echo 'console.log("PHP: '.$data.'")', exit;  


    foreach($data as $row) {
        $item[] = $row['item'];
    }


     for($i=0; $i<count($data);$i++){

         $sqlQuery = "INSERT INTO tab_list (item) VALUES (?)";
     }

    if($statement = $conexao->prepare($sqlQuery)){
        $statement->bind_param("s", $item[$i]);
        $statement->execute();
        $success= true;
    }else{
        $erro = $conexao->error;
        $success = false;
    }

    $sucess = array("success" => mysqli_errno($conexao) == 0);

    echo json_encode(array(
        "success" => $sucess
    ));

    $statement->close();
    $conexao->close();

已编辑:

我在 ajax 请求 jsonData: records 中更改为 params:{records:Ext.encode(records)}

在 PHP 代码上使用 var_dump($_POST); 我在 DevTools

上得到以下响应
array(10) {
  [0]=>
  array(5) {  
    ["item"]=>
    string(9) "item five"
    ["id"]=>
    string(22) "MyList.listDataModel-1"
  }
  [1]=>
  array(5) {
    ["item"]=>
    string(10) "item seven"
    ["id"]=>
    string(22) "MyList.listDataModel-2"
  }
  [2]=>
  array(5) {
    ["item"]=>
    string(9) "item four"
    ["id"]=>
    string(22) "MyList.listDataModel-3"
  }
...

但是,我仍然无法将这些数据插入 table 并创建新列表。问题现在在 PHP 代码中。

PHP解法:

  $records = stripslashes($_POST['records']);
  $data = json_decode($records, true);

//var_dump($_POST);
// echo 'console.log("PHP: '.$data.'")', exit;  


foreach($data as $row) {
    $item[] = $row['item'];
}


 for($i=0; $i<count($data);$i++){

     $sqlQuery = "INSERT INTO tab_list (item) VALUES (?)";  

     //within for
     if($statement = $conexao->prepare($sqlQuery)){
     $statement->bind_param("s", $item[$i]);
     $statement->execute();
     $success= true;
 }else{
    $erro = $conexao->error;
    $success = false;
    }
}

$sucess = array("success" => mysqli_errno($conexao) == 0);

echo json_encode(array(
    "success" => $sucess
));

$statement->close();
$conexao->close();

$item 是否在 foreach 循环之前初始化?看起来您希望 if($statement = $conexao->prepare(... 行位于 for(或者可能是 foreach)循环中。

编辑问题后,考虑使用 single INSERT 语句作为解决方案的替代方案:

$total = count($item);
$sqlQuery = 'INSERT INTO tab_list (item) VALUES ' . rtrim(str_repeat('(?),', $total), ',');
$statement = $conexao->prepare($sqlQuery);

if ($statement)
{
    for ($i = 0; $i < $total; $i++)
    {
        $statement->bind_param('s', $item[$i]);
    }

    $statement->execute();
    $success = true;
}
else
{
    $erro = $conexao->error;
    $success = false;
}