嗨,我有一个 ajax 函数,但我无法在 cakephp 中重定向到我想要的控制器
$.ajax( {
type: "POST",
url: "/NewEvents/some_function",
data:array,
async: true,
success: function (data) {
alert('hello');
}
NewEvents 是我的控制器, some_function 是我想要数据去的地方......
// In my controller file
function some_function()
{
some code.....
}
以及如何更改输出格式?
谁能帮我写代码??