我的 JS 正在创建如下所示的对象:
现在我想将它发布到 PHP 页面。
我尝试的是这样的:
var json = JSON.stringify(item_contents);
console.log(json);
jQ.post(
"http://somedomain.com/headlines/save_items/",
json,
function(data){
console.log("Data: ");
console.log(data);
alert("first success");
},
"json"
)
.success(function() {
alert("second success");
})
.error(function(data) {
alert("error: ");
console.log(data);
})
.complete(function() {
alert("complete");
});
...并且输出始终是错误的。我正在使用 cakePHP .. 有什么帮助吗?蒂亚!!!
编辑:
目前,我的 php 页面上的内容是:
echo print_r($_POST);
我得到一个空白或未定义的输出..