cakephp
Ajax-Request-Bearbeitung
Suche…
Ein einfaches Beispiel für CakePHP 2.x
Controller: Im Controller müssen Sie die RequestHandler-Komponente hinzufügen. Dadurch kann CakePHP automatisch Ajax-Anforderungen erkennen (siehe http://book.cakephp.org/2.0/de/core-libraries/components/request-handling.html für weitere Informationen):
class YourController extends AppController {
public $components = array('RequestHandler');
//...
public function ajaxCall() {
if($this->request->is('ajax'){
// some code that should be executed
// ...
// variables you want to return
$this->set(compact('firstVariable', 'secondVariable'));
$this->set('_serialize', array('firstVariable', secondVariable))
}
}
Code anzeigen (mit jQuery):
<script>
$.ajax({
type: 'POST',
url: '/yourController/ajaxCall',
success: function (result) {
// result is a JSON array of the returned Variables
},
error: function (result){
console.log(result);
}
});
</script>
Ajax-Anfrage in Cakephp 2.x
Eine weitere Möglichkeit, Ajax in Cakephp zu verwenden. Cakephp bietet sich für Ajax-Anfragen an. Bitte siehe Beispiel.
$data = $this->Js->get('#id')->serializeForm(array('isForm' => true, 'inline' => true));
//on click send request to controller and displays response data in view
$this->Js->get('#button-id')->event(
'click', $this->Js->request(
array('controller' => 'Users', 'action' => 'add'), array(
'update' => '#time', // field you wish to update
'data' => $data, // Form Data in serialize form
'async' => true,
'dataExpression'=>true,
'method' => 'POST' // method get or post
)
)
);
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow