Hi!
How can I print data in console?? I have tried in various ways and not get it.
Please help me!!
Thanks you!
How can I print data in console?? I have tried in various ways and not get it.
Please help me!!
Thanks you!
//directory => controllers
//entityname => Call
//In php
public function actionTest($params,$data,$request){
return json_encode(array("test" => "success"));
}
//In js
$.ajax({
url: "Call/action/Test"
}).done(function(resp){
console.log(resp);
}.bind(this))
echo '<pre>';
var_dump($entity->toArray());
exit;
Comment