What is the equivalent to getLastInsertId() in Cakephp?

后端 未结 22 696
囚心锁ツ
囚心锁ツ 2020-11-28 11:00

If I do getLastInsertId() immediately after a save(), it works, but otherwise it does not. This is demonstrated in my controller:

f         


        
22条回答
  •  萌比男神i
    2020-11-28 11:30

    each time you perform an insert operation on any model, cake internally fetchesthe last insert Id and Sets to Model->id attribute.

    so one can access it directly by $Model->id;, no need to query again for lastInsertId.

提交回复
热议问题