코드이그나이터(CodeIgniter) csrf_protection 이 True 일때 Ajax Post 처리방법
마스터욱
0
20
0
0
2019-01-08 04:53:39
코드이그나이터(CodeIgniter) csrf_protection 이 True 일때 Ajax Post 처리방법
csrf_protection 는 보안상 True 를 권한다.
다만 Ajax Post 처리의 경우에는
csrf_token_name 값을 강제로 생성해서 값을 넘기면 된다.
가령 아래와 같이 말이다.
var arg = {
"csrf_test_name" : "<?php echo $this->security->get_csrf_hash(); ?>",
};
이것땜시 1시간은 삽질한듯~