1

我通过 AJAX 发布表单,如果成功,它会重定向到另一个页面。表单提交成功,但重定向部分失败。

在我的 chrome 开发人员工具栏中,它显示正确的请求 url,请求方法 GET 和状态码 200 OK。

JavaScript 看起来像:

$('#submit-login').live('click', function(e) {
    e.preventDefault();

    var username = $('#username').val();
    var password = $('#password').val();

    var dataString = 'username=' + username + '&password=' + password;

    $.ajax({
        type: 'POST',
        data: dataString,
        url: '/account/do_ajax/login',
        dataType: 'json',
        success: function(data) {
            if(data.redirect) {
                window.location.href = data.redirect;
            } else {
                $('.message').hide();
                $('.message').html(data);
                $('.message').fadeIn('slow');
            }
        }
    });
});

和 PHP

  public function do_ajax($type) {
    if($type == 'login') {
        $this->_submit_login();
    }   
}

  public function _submit_login() {
    if($this->form_validation->run('login')) {
        $data = array(
            'username' => $this->input->post('username'),
            'password' => sha1($this->input->post('password'))
        );
        $authenticate = $this->account_model->authenticate($data['username'], $data['password']);
        if($authenticate) {
            $this->session->set_flashdata('success', 'You have successfully logged in.');
            redirect('/account');
        } else {
            echo json_encode('Could not log you in, your details are incorrect.');
        }
    } else {
        echo json_encode('<ul class="errors">'.validation_errors('<li>', '</li>').'</ul>');
    }
}

任何想法我哪里出错了?提前致谢。

4

1 回答 1

0

For the redirection try this :

window.location = data.redirect;
于 2012-07-19T20:13:27.787 回答