用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1685|回复: 1
收起左侧

[HELP] CI 如何在已经静态的页面使用post

[复制链接]
发表于 2013-9-6 16:59:04 | 显示全部楼层 |阅读模式

CI 如何在已经静态的页面使用post,前提是开启了 $config['csrf_protection'] = TRUE;

// If it's not a POST request we will set the CSRF cookie
                if (strtoupper($_SERVER['REQUEST_METHOD']) !== 'POST'))
                {
                        return $this->csrf_set_cookie();
                }

静态页面提交post 进来$_SERVER['REQUEST_METHOD']直接是post  所以没有给$this->csrf_set_cookie() 初始化的机会。
我测试进csrf_verify() 就初始化csrf_set_cookie  但是还是不行,求解!!!!!!
 楼主| 发表于 2013-9-6 17:06:10 | 显示全部楼层
....已解决   太粗心了.{:soso_e138:}

本版积分规则