4

データベースにデータを挿入するためにJquery Ajax内でCodeIgniter3を使用しています。

ただし、 csrf_tokenを使用して、以下のようにユーザーが何かを挿入したときにセキュリティ フォーム データを作成しました。

問題Chrome ブラウザではデータベースにデータを挿入できませんが、Firefox では機能します。

エラー 403 禁止および

<div id="container">
        <h1>An Error Was Encountered</h1>
        <p>The action you have requested is not allowed.</p>    </div>
</body>

これは設定ファイルの私の設定です:

$config['global_xss_filtering'] = TRUE;
$config['csrf_protection'] = TRUE;
$config['csrf_regeneration'] = TRUE;
$config['csrf_token_name'] = 'csrf_token_name';
$config['csrf_cookie_name'] = 'csrf_cookie_name';
$config['csrf_exclude_uris'] = array();
$config['csrf_expire'] = 7200;

そして、コントローラーを使用してDBにデータを挿入しました

public function post() {

        $new_token = $this->security->get_csrf_hash();
        $this->form_validation->set_rules($this->ads_m->post_rule);
        if ($this->form_validation->run() == FALSE) {
            echo json_encode(array('res' => FALSE));
        } else {

            $data = array(
                'name' => $this->input->post("p_name"),
                'user_id' => $this->user->user_id(),
                'price' => $this->input->post('p_price'),
                'addr' => $this->input->post('p_add'),
                'des' => $this->input->post('desc'),
                'status' => 1,
            );
            $where = NULL;
            $this->ads_m->insert_post($data, 'ads', $where);
            if ($this->ads_m->insert_check() == TRUE) {
                echo json_encode(array('res' => TRUE, 'token' => $new_token));
            } else {
                echo json_encode(array('res' => FALSE));
            }
        }
    }

そして、これが私のモデルです

public function insert_post($data, $table, $where = FALSE) {

        $this->db->set($data);
        if ($where) {
            $this->db->where($where);
        }
        $this->db->insert($table);
    }

そして、ここにデータを送信するためのAjaxがあります

$.ajax({
type: "post",
url: '<?php echo base_url('ads/post'); ?>',
data: $("#post_form").serialize(),
dataType: "json",
cache: false,
beforeSend: function () {
   }, success: function (data) {
          alert("you are successfully ");
   }
 });
}

HTMLフォームデータ

 <?PHP echo form_open(base_url('ads/post'),array("class" => "form_horizontal","id" => "post_form")); ?>
  <div class="controls form-group-sm">
    <label class="label-info"> Name </label>
    <?PHP echo form_input('p_name', '', 'class="form-control" id="p_name" '); ?>
    <label class="label-info">Price</label>
    <?PHP echo form_input('p_price', '', 'class="form-control" id="p_prce" '); ?>
    <label class="label-info">Location</label>
    <?PHP echo form_input('p_locat', '', 'class="form-control" id="p_locat" '); ?>
  </div>
 <?PHP echo form_close(); ?>
4

1 に答える 1