我正在尝试通过jquery-confirm
插件通过其 ajax-load 函数从表单加载文件数据来执行 AJAX 请求,然后将信息更新到 PHP 文件并最终更新到数据库。
但是,这会导致以下错误。
Deprecated: Automatically populating $HTTP_RAW_POST_DATA is deprecated and will be removed in a future version. To avoid this warning set 'always_populate_raw_post_data' to '-1' in php.ini and use the php://input stream instead. in Unknown on line 0
Warning: Cannot modify header information - headers already sent in Unknown on line 0
我什至尝试输入一个空白变量,因为此错误的含义是它没有将数据发布到页面。这只是简单地返回一个未定义的索引,确认它没有发布数据。
这个网站上的一些帖子说要更改php.ini
文件等,因为我使用的是大学服务器,我们无权更改这些文件。
这是我执行 AJAX 功能的 JS 文件
function addSubject(){
$("#addBtn").on('click', function() {
$.confirm({
title: 'Manage Subjects',
content: 'url: addSubjectForm.html',
buttons: {
addSubject: {
text: 'Add New Subject',
btnClass: 'btn-info',
action: function () {
var findSubject = this.$content.find('input#newSubject');
var findDescript = this.$content.find('input#newDescript');
var newSubject = findSubject.val();
var newDescript = findDescript.val();
if (newSubject === '' || newDescript === '') {
$.alert({
content: 'One of the fields from the form was empty',
type: 'red'
});
return false;
} else {
$.ajax({
url: "../ajax/admin/addSubject.php",
type: "POST",
data: {title: newSubject, description: newDescript, blank: 'blank'},
cache: false,
contentType: false,
processData: false,
success: function (result) {
$.alert({
content: result,
type: 'green'
});
}
});
console.log(newSubject + " " + newDescript);
}
}
},
close: {
text: 'Close',
btnClass: 'btn-danger'
}
}
});
});
}
我访问变量的 PHP 页面在这里:
<?php
$title = filter_input(INPUT_POST, "title");
$description = filter_input(INPUT_POST, "description");
$test = $_POST['blank'];
echo $test;
echo "$title $description";
这些文件中的空白变量仅用于测试目的。
提前致谢。