我正在研究 Cakephp 2.x ...我想用 json 中的 som 数据返回对我的 android 应用程序的响应 ..这是我的函数,我如何在我的 cakephp 网络中获得响应..
public function phone(){
$this->loadModel('User');
if ($this->request->isPost()){
$json = $this->request->data('json');
$data = json_decode($json, TRUE);
if($data){
//here i want to send response back to mobile app
}
}
我想在我的 json 响应中像这样返回.. 我的意思是我想在 json 响应中发送变量名及其值
[Contact] => Array
(
[idContacts] => 1
[name] => asad
[mobileNo] => 03224999464