- $this->Foo は Foo モデルのインスタンスです。その上でメソッドを呼び出すと、Foo モデルのそのインスタンスのアクティブなレコード (存在する場合) でメソッドが呼び出されます。そのため、どのレコードを保存するかを Cake に伝えるという点では、その必要はありません。Cake は現在アクティブなレコードを保存することを知っています。
コメント付きで貼り付けたコードを次に示します。これが役立つ場合があります。
// Prepare this instance of the Foo model to save a new record
$this->Foo->create(array(...));
// Save the new record that we have just prepared
$this->Foo->save();
そして逆に…
// Call the create method on this instance of the Foo model, and return what?
// Return another instance of the Foo model?
// Why not just continue using the instance we already have, ie, $this->Foo
$foo = $this->Foo->create(array(...));
// Call the save method on the duplicate instance of the Foo model that was
// returned from the create method?
$foo->save();
// Why did 'create' need to return a duplicate instance of the model to do a save???
// Why not call the save on the same instance of the Foo model that we used to call the create?
ポイント2.これは基本的に一貫性のためです。多くの場合、相互にリンクされた複数のテーブルからデータを返します。テーブル Foo と Bar が 1 対 1 の関係にあり、関連する Bar レコードと共に Foo レコードを取得しているとします。返される配列には Foo と Bar キーが必要です。 :
$foo['Foo']['column1']、$foo['Foo']['column2']、$foo['Bar']['column1']、$foo['Bar']['column2' ]
一貫性を保つために、1 つのテーブルからのみフェッチした場合でも、複数のテーブルから結合されたデータをフェッチした場合と同様に、$foo['Foo']['column1'] の形式で返されます。
編集:あなたのコメントに応えて、あなたがコードを持っていると言います:
$foos = $this->Foos->find('all');
返された配列の各行で何らかのモデル メソッドを呼び出したいとします。それを行う方法はいくつかあります。1つの方法は次のようなものです:
// This is code for the controller
$this->Car->find('all');
foreach($cars as $car){
$this->Car->driveTwoMiles($car); // the driveTwoMiles would be in your model class
}
したがって、モデルには次のメソッドがあります。
// This would be a method in your model class
function driveTwoMiles($car){
$this->id = $car['Car']['id']; // set the active record
// we are now inside the model, so $this->id is the same as calling $this->Car->id from the controller
// Do whatever you want here. You have an active record, and your $car variable, holding data
$this->Post->saveField('distance_driven', $car['Car']['distance_driven']+2);
}
また、多くのレコードではなく 1 つのレコードを更新する場合は、「find('all')」ではなく「read」を実行できます。詳細については、以下のリンクを参照してください。
ケーキクックブックのこれらのページを最後まで読むことを強くお勧めします。
http://book.cakephp.org/2.0/en/models/retriving-your-data.html - データの取得
http://book.cakephp.org/2.0/en/models/ Saving-your-data.html - データの保存
http://book.cakephp.org/2.0/en/models/deleting-data.html - データの削除
いずれも、Cake モデルの操作方法に関する非常に重要な基本情報が含まれています。今すぐ時間をかけて本当に理解してください。そうすれば、将来、無数の頭痛の種やコードのリファクタリングを避けることができます!