ajax函数没有重定向到其他页面

时间:2013-04-26 10:01:23

标签: php jquery ajax cakephp

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

如何更改输出格式?

任何人都可以帮我处理我的代码吗?

1 个答案:

答案 0 :(得分:1)

在成功完成ajax请求后使用ajax success函数,遵循下面给出的代码,

$.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.
        }
        });