0

这是javascript代码:

var jsonData = JSON.stringify(testObj);
            $.ajax({
              url: '../php/functions/spesific_field_set.php',
              type: 'post',
              data: {fieldObjArray: jsonData, tableName: fieldTableName}
              }).always(SpesificPropertiesSet);

这是php:

$updates = mysql_real_escape_string($_POST['fieldObjArray']);
$updates = json_decode($updates, true);
$tableName = mysql_real_escape_string($_POST['tableName']);

echo $updates;

什么 testObj 是一个对象数组,我应该如何将它传递给 php?以及我应该如何在 php 端访问这个对象数组中的数据?

谢谢!!

4

1 回答 1

2

这是 PHP 文件。这应该向您展示如何访问$updates通过 AJAX 发送的内容。

$updates = $_POST['fieldObjArray'];
$updates = json_decode($updates, true);
$tableName = $_POST['tableName'];
echo $updates; // this is an array so this would output 'Array'

foreach ($updates as $key => $value) {
    echo 'Key: '.$key.' Value: '.$value.'<br />'; // to access this, just use $updates['key']
}

// example
echo $updates['something'];
于 2012-09-29T23:55:43.707 回答