我已经花了10多个小时解决这个问题,并且基本上搜索了整个互联网以寻求解决方案。它是一个简单的jQuery ajax POST方法,我在成功之前已经使用了几次。在过去我也有这个问题,但不知何故解决了它。我通过的数据似乎没问题,在chrome的网络控制台中,它甚至显示了一个包含所谓数据的成功帖子。但是,使用.load来获取该数据始终返回null。在下面的代码中,我使用了一个表单,我阻止了默认提交以防止刷新。一个按钮触发sellBook(),它会提示一个表单,然后提交触发post()。
JS
prepare()
我总是返回成功,而不是错误,因为我收到数据警报。
在我的apache错误日志中,我得到了这个:
[Thu Aug 13 11:24:15.666854 2015] [:error] [pid 4255] [client 127.0.0.1:50476] PHP注意:未定义的索引:/ var / www / html / textbookexchange / db2.php在第2行,引用者:https://localhost/textbookexchange/
function sellBook(i) {
$('#results').html('');
title = books[i].title;
author = books[i].author;
ISBN = books[i].ISBN;
publisher = books[i].publisher;
image = books[i].image;
year = books[i].year;
$('#results').html('Listing for ' + books[i].title + ' by ' + books[i].author + '<br><br><form method="post" action="https://localhost/textbookexchange/db2.php" id="sellIt">Edition #: <input type="text" id="edition" name="edition"/><br><br>Price: $<input type="text" id="price" name="price"><br><br>Condition: <input type="text" id="condition" name="condition"><br><br><input type="submit" value="Submit"><br><br></form>');
getInfo();
$('#sellIt').submit(function () {
post();
return false;
});
}
function post() {
price = document.getElementsByName('price')[0].value;
edition = document.getElementsByName('edition')[0].value;
condition = document.getElementsByName('condition')[0].value;
var formData = {
A: title,
B: author,
C: ISBN,
D: publisher,
E: image,
F: year,
G: soldby,
H: fblink,
I: price,
J: edition,
K: condition
};
var url = 'db2.php/'
jQuery.ajax({
type: 'POST',
url: url,
data: formData,
success: function (data) {
alert(data);
$('#results').load("db2.php/");
},
error: function (xhr, ajaxOptions, thrownError) {
alert(xhr.status + " " + thrownError);
},
});
}
我尝试将其解析为JSON,重置contentType,设置dataType,将crossdomain设置为true,async为false,使用jsonp,使用$ .post,使用更少的数据(只有一个变量),以及少数几个其他的东西..
答案 0 :(得分:9)
load()
创建一个单独的get请求,因此php没有POST
数据可供使用。您需要做的是使用从post请求返回的数据:
success: function(data) {
alert(data);
$('#results').html(data); //.load("db2.php/");
},