我在将带有 ajax 的 json 数据发送到 php 文件然后使用它上传到服务器时遇到问题。
如果我正在对变量进行回显,$email_info->Name
则返回的数据值为空。我试过 json_decode 但它没有这样做。
这是我的代码,
查询:
$( document ).on('click', '#send_touch', function(){
new_email = [];
new_email.push({
Name: $('#name').val(),
Phone: $('#phone').val(),
Email: $('#email').val(),
Interested_in: $('#interested_in').val(),
User_id: $('#email_user_id').val()
});
new_email = JSON.stringify({Email: new_email}, null, "\t");
$.ajax({
url: "core.php",
type: "post",
data: { NewMail: new_email
},
success: function(data){
alert(data)
},
error: function(){
}
});
});
PHP:
if ($_POST['NewMail']) {
$timeStamp = time();
$new_email = json_decode($_POST['NewMail'], true);
$email_info = $new_email->Email[0];
// New Email
mysql_query("INSERT INTO " . $dbPrefix . "touches (date, user_id, name, phone, email, interested_in, seen, status) VALUES ('".safeSQL($timeStamp)."', '".safeSQL($email_info->User_id)."', '".safeSQL($email_info->Name)."','".safeSQL($email_info->Phone)."', '".safeSQL($email_info->Email)."', '".safeSQL($email_info->Interested_in)."', '0', '1')") or die("Query failed: " . mysql_error());
echo $email_info->Name;
}
如果我在 PHP 端做一个回显,$_POST['NewMail']
我会得到这个:
{
\"Email\": [
{
\"Name\": \"John Doe\",
\"Phone\": \"1234567\",
\"Email\": \"john@doe.com\",
\"Interested_in\": \"Text here..\",
\"User_id\": \"1\"
}
]
}
我怎样才能解决这个问题?