普通网友 2015-05-01 12:35
浏览 16

Cakephp一次保存多个记录

Is it possible to use save more then one record in cakephp using the $this->save(); function?

  • 写回答

2条回答 默认 最新

  • drxyaox153896 2015-05-01 15:31
    关注

    save() is used to simply save a model:

    Array
    (
        [ModelName] => Array
        (
            [fieldname1] => 'value'
            [fieldname2] => 'value'
        )
    )
    

    Assuming the above information was stored in an array called $data, one would call

        $this->ModelName->save($data);
    

    in order to INSERT a record into the model's table (if id field is not specified) or UPDATE a record of the model's table (if id field is specified).

    saveAll() is used to:

    Save multiple records of a model

    Array
    (
        [Article] => Array
        (
            [0] => Array
            (
                [title] => title 1
            )
            [1] => Array
            (
                [title] => title 2
            )
        )
    )       
    

    So, you may save many models at the same time instead of looping and using save() each time.

    Save related records of a model

    Array
    (
        [User] => Array
        (
            [username] => billy
        )
        [Profile] => Array
        (
            [sex] => Male
            [occupation] => Programmer
        )
    )
    

    This would save both User and Profile models at the same time. Otherwise, you would have to call save() for User first, obtain the id of the newly saved user and then save Profile with user_id set to the obtained id.

    Examples taken straight from the book.

    评论

报告相同问题?

悬赏问题

  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大
  • ¥15 Oracle中如何从clob类型截取特定字符串后面的字符
  • ¥15 想通过pywinauto自动电机应用程序按钮,但是找不到应用程序按钮信息
  • ¥15 如何在炒股软件中,爬到我想看的日k线
  • ¥15 seatunnel 怎么配置Elasticsearch
  • ¥15 PSCAD安装问题 ERROR: Visual Studio 2013, 2015, 2017 or 2019 is not found in the system.
  • ¥15 (标签-MATLAB|关键词-多址)
  • ¥15 关于#MATLAB#的问题,如何解决?(相关搜索:信噪比,系统容量)
  • ¥500 52810做蓝牙接受端
  • ¥15 基于PLC的三轴机械手程序