Hot answers tagged cakephp
1
Very simple, conditionally run the Noty.js code in your view based on whether $this->Model->save() was successful.
Controller:
$success = $this->Model->save($this->request->data);
$this->set('success', $success);
View:
<?php if ($success): ?>
<script>
// Trigger your Noty.js dialog here.
</script>
...
1
First, make sure the Content-Type of the request is application/json.
Second, CakePHP doesn't automatically decode the JSON payload; you have to do it manually. From the manual:
// Get JSON encoded data submitted to a PUT/POST action
$data = $this->request->input('json_decode');
Only top voted, non community-wiki answers of a minimum length are eligible