我想将数组发送到服务器。
这就是我尝试发送数组的方式:
jQuery(document).ready(function($){
$.ajax({
type: "POST",
url: "file.php",
datatype : "json",
data : JSON.stringify({ name: "Daniel", phone: "01234123456" }),
success: function(msg){
alert('Success!');
}
});
});
这就是我尝试在 file.php 中获取数组的方式
print_r($_POST);
print_r($_GET);
print_r(json_decode($_POST);
当然,在萤火虫控制台中,我看到了数组,但在页面上看不到。