$.post("http://localhost/academico/materias/getid",
ui.item.value,
function(data){
console.log(data);
}, "json");
在我的控制器中,$data
变量始终为空:
// $data is always null. How come?
public function getid($data = null) {
debug($data);
// Como vamos a retornar solamente datos, no necesitamos el layout.
$this->layout = null;
$this->set('data', $data);
$this->render('/Elements/ajaxreturn');
}
如何将 POST 的值绑定到我可以在控制器代码中使用的东西?