你好,我是一个使用 jQuery 和 Ajax 的新手。我正在尝试使用 Jquery POST 方法向服务器提交数据。我传递的数据是一个字符串。现在我无法理解如何传递数据以及如何检索数据。我曾尝试为我的问题搜索文章,但没有找到。我相信我的问题是非常基本的。
if (1)//validateStep(step)
{
if(step==1)
{
var data = document.getElementById('hiddenContact').value;
$.post('/callcenter/admin/postContacts', data);
}
}
现在我将发布 postContacts 操作的代码,这不是什么大事。
function postContacts()
{
$this->autoRender = false;
echo '<script>console.log("post contacts");</script>';
}
但我对如何检索数据感到困惑。任何帮助表示赞赏。我正在使用 cakePHP,所以我不得不使用 autoRender=false; 这使得视图可选。