Protection against unauthorized access to forms is one of the main functions provided by the security component. As long as it is enabled, it will treat all POSTs as submitting a form.
HTML- HTML Security, JQuery. , , $this->Security->validatePost = false; $this->Security->csrfCheck = false;, , .
, CakePHP Form Helper , ajax. , data[_Token][fields] data[_Token][unlocked] :
<?php
echo $this->Form->create('Test',array('id'=>'testform'));
echo $this->Form->input('Something');
echo $this->Form->submit();
echo $this->Form->end();
?>
- :
<form action="/your/url" id="testform" method="post" accept-charset="utf-8">
<div style="display:none;">
<input type="hidden" name="_method" value="POST"/>
<input type="hidden" name="data[_Token][key]" value="9704aa0281d8b5a2fcf628e9fe6f6c8410d8f07a" id="Token937294161"/>
</div>
<div class="input text">
<input name="data[Test][Something]" class="required" type="text" id="TestSomething"/>
</div>
<div class="submit">
<input type="submit" />
</div>
<div style="display:none;">
<input type="hidden" name="data[_Token][fields]" value="0c81fda1883cf8f8b8ab39eb15d355eabcfee7a9%3A" id="TokenFields817327064"/>
<input type="hidden" name="data[_Token][unlocked]" value="" id="TokenUnlocked281911782"/>
</div>
</form>
JQuery, ajax POST:
$('#testform').submit(function(event) {
$.ajax({
type: 'POST',
url: "/your/url",
data: $('#testform').serialize(),
success: function(data){
alert('Wow this actually worked');
},
error:function() {
alert('This will never work');
}
});
event.preventDefault();
});
, , POST .
: , , , POST . , , :
public $components = array(
'Security' => array(
'csrfUseOnce' => false
)
);
... . , csrfExpires, . CSRF .