0

我在数据库中使用带有加密会话的 codeigniter,并且我正在使用 twitter 引导模式来更新表单中的一些用户详细信息。

我在表单上使用 jquery 验证,在 submitHandler 中我通过 ajax 发布数据并关闭模式。

submitHandler: function (form) {
document.getElementById("edit-profile-submit-button").disabled = true;
$('.modal-ajax-loader').show();
    $.ajax({
        type: $(form).attr('method'), // 'Post'
        url: $(form).attr('action'), // 'profile/edit_basic_details'
        data: $(form).serialize(),
        success: function(data, status){
            $(form).html(data);
            $('.modal-ajax-loader').hide();
            setTimeout(function() { $('#edit-profile-details').modal('hide'); }, 2000);
        },
        error: function(data, status) {
            $(form).html(data);
        }
    });
    return false;
}

这是从同名控制器调用的模型函数,

function edit_basic_profile() {
    $screenname = $this->security->xss_clean($this->input->post('screenname'));
    $firstname = $this->security->xss_clean($this->input->post('firstname'));
    $lastname = $this->security->xss_clean($this->input->post('lastname'));
    $email = $this->security->xss_clean($this->input->post('email'));
    $bio = $this->security->xss_clean($this->input->post('bio'));

    $data = array(
        'screen_name' => $screenname,
        'first_name' => $firstname,
        'last_name' => $lastname,
        'email' => $email,
        'bio' => $bio,
    );

    try{
        // Run the update query
        $this->db->where('profile_id', $this->session->userdata('profile_id'));
        $this->db->update('profiles', $data);

        // Let's check if there are any results
        if($this->db->affected_rows() == 1)
        {
            // Setup the session information for the user
            $this->session->set_userdata($data);
            return true;
        }
        // If the previous process did not update rows then return false.
        error_log("profile_model, edit_basic_profile(): There were no affected rows");
        return false;
    } catch(PDOExceprion $e) {
        error_log("profile_model, edit_basic_profile(): ".$e);
        return false;
    }
}

我也可以在 submitHandler 中更新页面上更改的值,当然服务器上的会话在模型中更新。

$("#profile-screenname").html($(screenname).val());
$("#profile-bio").html($(bio).val());

问题是当我再次打开模式时,它会从浏览器 cookie 中的会话数据中获取用户详细信息并获取原始数据,除非页面在第一次更新后被刷新。

(表单数据是这样加载的);

<input type="text" class="input-large" id="firstname" name="firstname" placeholder="First Name" value="<?php echo $this->session->userdata('first_name'); ?>">

"<?php echo $this->session->userdata('first_name'); ?>"第二次我在任何页面刷新加载旧数据之前打开模式。

4

1 回答 1

0

当然,您只需要调用一个更新/设置新会话数据的 ajax url:

   HTML+JS 
       ---> Ajax call
          ----> $this->session->set_userdata('key','new-value'); 
            ----> session and db updated.

完毕。

还要注意并更改所有这些:

$screenname = $this->security->xss_clean($this->input->post('screenname'));

对此:

$screenname = $this->input->post('screenname',true);

这是完全相同的结果

于 2013-07-15T20:09:15.513 回答