未捕获的异常:Ajax 进程中的内存不足
2022-08-30 19:01:48
我遇到了一个问题,我正在提交一个包含小数据的简单表单,当我检查选项卡时,ajax的URL似乎正在工作,但是在处理ajax之后,它会提醒一个错误,它被重定向到我的主页,从控制台选项卡我有这个:console
weird error
未捕获的异常:内存不足
在我的ajax中,我只有这个简单的代码:
$("#add-comment").on('click', function() {
var id = $('input[name=\'review_id\']').val();
var customer_id = $('input[name=\'customer_id\']').val();
var $comment = $('textarea[name=\'user_comment\']').val();
var sample = "test";
$.ajax({
url: 'index.php?route=product/product/writeSubComment',
type: 'post',
dataType: 'json',
data: { text: sample },
beforeSend: function() {
},
success: function(data) {
console.log(data.test);
},
error: function() {
alert('ERROR!!!');
}
});
});
在我的PHP控制器中,我有这个函数
public function writeSubComment() {
$json = array();
$json['test'] = $this->request->post['text'];
$this->response->addHeader('Content-Type: application/json');
$this->response->setOutput(json_encode($json));
}