我使用$.post
将表单数据作为由对象文字组成的数组发送到process.php
,如下所示
$('#form').submit(function(e){
var my_result = JSON.stringify(array);// array is the array where I store my object literals. It contains only object literals
alert(my_result);
$.post('process.php', my_result, function(answer) {
alert('success');
})
.fail(function() {
alert('failure');
});
});
。数据已发送,但我不知道如何从服务器端访问数据并将其解压缩以存储在数据库中。有没有人知道如何做到这一点?我读过上一篇文章,但他们根本没有帮助我,而是让我更加困惑。
答案 0 :(得分:1)
您可以访问数据using the $_POST global:
$server_side_my_result_var = $_POST['my_result'];