我不知道为什么,我在另一个共享主机和我的开发人员上有一个类似的脚本,这很好用:
public function admin_delete_entry() {
$this->checkKey();
$this->autoRender = false;
if ($this->request->is('post')) {
$this->Pronostic->id = $this->request->data('id');
$res = $this->Pronostic->delete();
if ($res) {
$data = array('status' => 'success');
} else {
$data = array('status' => 'error');
}
echo json_encode($data);
}
}
输出结果为:
{"status"
我不知道为什么输出会在此时被截断...有什么想法吗?