我正在调用控制器功能:
$.get("http://localhost/universityapp/courses/listnames", function(data){
alert("Data Loaded: " + data);
});
在我的控制器中:
public function listnames() {
$data = Array(
"name" => "Sergio",
"age" => 23
);
$this->set('test', $data);
$this->render('/Elements/ajaxreturn'); // This View is declared at /Elements/ajaxreturn.ctp
}
在那个视图中:
<?php echo json_encode($asdf); ?>
但是,Action 会返回整个页面,包括布局内容(页眉、页脚、导航)。
我在这里想念什么?如何只返回没有布局内容的 JSON 数据?