在开始之前,我查看了所有标题相似的推荐问题,即使是这个jQuery Ajax 返回 404 错误,但正确的响应,但那个恰好是 wordpress 问题,而且我没有使用 wordpress,所以它没有用。
这是这里的基本内容,但我无法让它遵守。
javascript调用
$.ajax({
type: 'POST',
url: '/commentCenter/index/comment-ajax',
dataType: "text",
data: formData,
success: function(result){
console.log(result);
}
});
控制器/动作
public function commentAjaxAction() {
$this->_helper->layout()->disableLayout();
$this->view->output = "testData";
}
评论Ajax.phtml
<?php
header('HTTP/1.1 200 OK');
echo $this->output;
?>
所以,我一直在尝试这里的一切。在 Chrome 检查器中,我可以看到 404 状态代码,但我也可以在响应中看到我的视图的输出。所以,我知道它有效。我试图将状态代码标题添加到视图中(我还将它添加到控制器中以用于 s&g,但还没有骰子。正如我所提到的,我已经看到了类似问题的其他解决方案,但它们都与 wordpress 相关。我知道我我在看东西。
提前致谢。