default csrf security and ajax post in one controller

You are viewing revision #1 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version.

next (#2) »

Hello Yii friends

I am going to write a article. That we write a code on every ajax call but writing a single code in one controller is sufficient in ajax post with csrf security which is very easy.

At first go to components and open the controller.php

Simply add the following code:-

// this function will be initialize in every controller call which will call initAjaxCsrfToken function

public function init() {
    parent::init();
    $this->initAjaxCsrfToken();
}

// this function will work to post csrf token.

protected function initAjaxCsrfToken() {

    Yii::app()->clientScript->registerScript('AjaxCsrfToken', ' $.ajaxSetup({
                     data: {"' . Yii::app()->request->csrfTokenName . '": "' . Yii::app()->request->csrfToken . '"},
                     cache:false
                });', CClientScript::POS_HEAD);
}

Enjoy coding

0 3
8 followers
Viewed: 27 283 times
Version: Unknown (update)
Category: Tutorials
Written by: jasonban
Last updated by: CeBe
Created on: Jan 20, 2014
Last updated: 10 years ago
Update Article

Revisions

View all history

Related Articles