在 cakephp2.10 中使用 getLastInsertID 时获取 null

Getting null when using getLastInsertID in cakephp2.10

在cakephp2.10中调用getLastInsertID()时获取空值

我的代码是

$this->query("INSERT INTO $savedtbl(ref_name,productdetails_id,users_id,type,image,saved_date,template_name) VALUES('$ref_name',{$paramsArray['Customimage']['productdetail_id']},'$uid','{$paramsArray['Customimage']['front_rear']}','$editedImg','$date','$template_name')");
$lastid = $this->getLastInsertID();

如何解决这个问题?请帮忙

据我所知,Cake 2.x 中的 Model::getLastInsertID() 将 return 最后插入的 ID 只有当插入是通过模型方法而不是普通的 SQL 查询时.您应该尝试这种方法:

$this->Model->create();
$this->Model->set(...); //set your fields as needed
$this->Model->save();
$lastId = $this->Model->getLastInsertID();