-1

嗨,我有一个 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.....
 }

以及如何更改输出格式?

谁能帮我写代码??

4

1 回答 1

1

成功完成 ajax 请求后使用 ajax 成功函数按照下面给出的代码,

$.ajax( {
        type: "POST",
        url:  "/NewEvents/some_function",
        data:array, //data you want to pass the
        success: function (data) {
        alert('hello'); // after success hello will alert.
        }
        });
于 2013-04-30T13:40:23.960 回答