1

我有一个使用 CI 会话类的 CI 应用程序。这是我遇到问题的过程:

  1. 用户加载页面
  2. Ajax 请求从数据库中获取记录
  3. 使用该记录的 ID 设置 userdata 变量并执行各种数据库操作
  4. 用户刷新页面
  5. Ajax请求根据上一条记录的会话变量从DB获取记录(同一条记录不能连续传回两次)
  6. 将 userdata 变量重新设置为新记录的 ID

等等等等

这在 chrome 和 FF 中完美运行。但很明显,当我在 IE 中进行测试时 - 不起作用。

执行 ajax 请求并检索第一条记录。此时会话变量已设置。用户刷新但仍保留相同的记录。

此时,如果我清除会话 cookie 并刷新新记录,则会检索到。

我试过改变:

$config['sess_cookie_name']     = 'ci_session';

$config['sess_cookie_name']     = 'cisession';

就像我在另一篇文章中看到的那样,但没有运气。还尝试使用数据库进行会话存储,但仍然没有运气。

这是问题页面: http: //givestream.co.uk/stream

在 chrome 或 FF 中加载它,然后刷新或点击“下一步”按钮,您会看到它检索了一个新的慈善机构。在 IE 中尝试此操作,除非您清除会话 cookie,否则它不起作用。

获取记录的JS函数:

function get_matches(){
    var charity;
    var user_total;
    jQuery.get("/stream/get_charity/", function(data){

        charity = data.charity;
        user_total = charity.user_totals;

        /** CHANGE URL **/

        if (history.pushState) {
            window.history.pushState("object or string", "Title", "/stream/"+charity.slug);
        }

        /*****************/

        // can user accept?
        if(charity.can_donate == 0){
            // No
            jQuery('.alert-message').show();
        } else{
            jQuery('.alert-message').hide();
        }

        // Charity Binding
        jQuery('p#char_modal_description').html(charity.description);
        jQuery('.char_more_link').attr('id', charity.id);
        jQuery('h1#char_name').html(charity.char_name);
        jQuery('h2#char_modal_header').html(charity.char_name);
        jQuery('p#char_desc').html(charity.description);
        jQuery('#website').html('<label>Website</label><a href="'+charity.website+'" style="color:#08C;" target="_blank">'+charity.website+'</a>');
        jQuery('#char_total').text('\u00A3'+charity.total);
        jQuery('#donors').html(charity.recent_donors);
        jQuery('#fans').html(charity.recent_fans);

        if (typeof user_total !== 'undefined') {
            jQuery('#total_char_month').text('\u00A3'+user_total.total_char_month);
            jQuery('#total_char_alltime').text('\u00A3'+user_total.total_char_alltime);
            var has_user_seen_stream_notice = user_total.has_user_seen_stream_notice;

            if(has_user_seen_stream_notice == false){
                jQuery('#stream_help').show();
            } 
        } else{
            jQuery('#total_char_month').text('\u00A3'+0);
            jQuery('#total_char_alltime').text('\u00A3'+0);
        }

        /** TWITTER SHARE BUTTON CHANGE URL **/

        var twitter = '<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://givestream.co.uk/stream/'+charity.slug+'" data-via="givestreamuk" data-hashtags="socialgiving">Tweet</a>';
        jQuery('#twitter_share').html(twitter);

        var jstext = '!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");';

        var script   = document.createElement("script");
        script.type  = "text/javascript";
        script.text  = jstext;
        jQuery('#twitter_share').append(script);

        // *************************************//


        /** FACEBOOK SHARE WIDGET **/

            var fb = '<iframe src="//www.facebook.com/plugins/like.php?href=http://givestream.co.uk/stream/'+charity.slug+'&amp;send=false&amp;layout=standard&amp;width=280&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font&amp;height=35&amp;appId=119083868224729" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:280px; height:35px;" allowTransparency="true"></iframe>';
            jQuery('#fb_share').html(fb);


        // ***********************//


        jQuery('#char_website').html(charity.website);

        jQuery('#sectors').html('<label>Tags</label>'+charity.sectors);
        jQuery('#permalink').val('http://givestre.am/stream/'+charity.slug);

        jQuery('#refresh').activity(false);

        get_charity_gallery();
        get_charity_shouts();

    }, 'json');

    return;
}
4

4 回答 4

5

固定的!

这似乎不是 ci_session 问题。

我挖得更深一点并补充说

log_message('info', 'queried!-'.$_SERVER['HTTP_USER_AGENT']);

进入执行 json 响应的控制器,以查看 ajax 请求是否实际到达控制器,结果发现没有任何 IE ajax get 请求实际上到达控制器。

事实证明,即使 IE 网络检查器确认了 get 请求,它实际上是在使用缓存的 ajax 响应。

我添加了

jQuery.ajaxSetup ({
    // Disable caching of AJAX responses
    cache: false
});

到顶部的 js 脚本和繁荣。排序。

不过感谢@Laurencei 的帮助!

于 2012-04-25T13:33:14.937 回答
3

通过设置 sess_expire_on_close = true 试试这个。我在配置中使用此设置解决了我的问题。

于 2012-09-14T01:24:45.583 回答
2

尝试设置 $config['sess_match_useragent'] = FALSE;

于 2012-10-25T15:57:15.120 回答
1

忽略上面的评论 - 这是一个 CI 问题,而不是 JS 问题。

首先,如果“cookie_domain”设置不正确,IE 会话也可能会失败——尤其是留空时。所有其他浏览器将继续工作,但不是 IE。

其次 - 试试这个解决方案: http ://codeigniter.com/forums/viewthread/203821/

第三 - 使用这个解决方案(我使用 - 工作得很好): http : //codeigniter.com/forums/viewthread/170123/ (大约一半 - WanWizard 发布的 MY_Session 文件

于 2012-04-24T05:21:33.750 回答