如何使用ajax将我的jquery数组保存到php

时间:2014-08-02 14:27:29

标签: javascript php jquery ajax pdo

我有一个脚本可以获取我添加的表的内容。

我想做的是将内容保存到数据库中。

在图片中,我从表中获取的表格和我的dataSet变量的内容。

我检查数据集并提醒它检查它是否有价值。

我的问题是我无法保存我传递给php的数组导致它无法正常工作。我的saveTable.php无效参数foreach中出现错误。

enter image description here

脚本:

var names = [].map.call($("#myTable2 thead th"), function (th) {
    return $(th).text();
});


var x = [].map.call($("#myTable2 tbody tr"), function (tr) {
    return [].reduce.call(tr.cells, function (p, td, i) {
        p[names[i]] = $(td).text();
        return p;
    }, {});
});

var dataSet = JSON.stringify(x);
alert(dataSet);

$.ajax(
    {
    url: "saveTable.php",
    type: "POST",
    data: { tableArray: dataSet},
    success: function (result) {

    }
}); 

saveTable.php

<?php

error_reporting(-1);
ini_set('display_errors', 'On');

$host = "localhost";
$user = "root";
$pass = "";
$db = "test";

$dbc = new PDO("mysql:host=" . $host . ";dbname=" . $db, $user, $pass);
$dbc->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

$tableArray = isset($_REQUEST['tableArray']) ? $_REQUEST['tableArray'] : "";

$sql = "INSERT INTO viewTables (name, age, gender, action) VALUES (:name, :age, :gender, :action)";
$sth = $dbc->prepare($sql);
foreach( $tableArray As $v){
    $sth->bindValue(':name', $v[0], PDO::PARAM_STR); 
    $sth->bindValue(':age', $v[1], PDO::PARAM_STR);
    $sth->bindValue(':gender', $v[2], PDO::PARAM_STR);
    $sth->bindValue(':action', $v[3], PDO::PARAM_STR);      
    $sth->execute();
}

?>

新错误:

enter image description here

2 个答案:

答案 0 :(得分:1)

您似乎试图在String循环中使用foreach类型。尝试:

$tableArray = isset($_REQUEST['tableArray']) ? json_decode($_REQUEST['tableArray']) : array();

这应该可以使它工作。祝你好运,希望这会有帮助!

答案 1 :(得分:0)

您必须使用json_decode将字符串转换为数组才能将其用作数组。