大量のアクションでループの保存を回避する


13

CMSページの場合と同様のインライン編集アクションを含む独自のCRUDモジュールを作成しました。
すべてが正常に動作しますが、EcgM2標準で phpsnifferを実行すると、次の警告が表示されます。

ループで検出されたモデルLSDメソッドsave()

どうすればこれを回避できますか?
注:上記のリンクされたコアファイルを「スニッフィング」すると、同じ警告が表示されます。
ここにexecute誰かがそれを必要とする場合の私の方法があります。しかし、それはCMSページコントローラーからのものと非常に似ています

public function execute()
{
    /** @var \Magento\Framework\Controller\Result\Json $resultJson */
    $resultJson = $this->jsonFactory->create();
    $error = false;
    $messages = [];

    $postItems = $this->getRequest()->getParam('items', []);
    if (!($this->getRequest()->getParam('isAjax') && count($postItems))) {
        return $resultJson->setData([
            'messages' => [__('Please correct the data sent.')],
            'error' => true,
        ]);
    }

    foreach (array_keys($postItems) as $authorId) {
        /** @var \Sample\News\Model\Author $author */
        $author = $this->authorRepository->getById((int)$authorId);
        try {
            $authorData = $this->filterData($postItems[$authorId]);
            $this->dataObjectHelper->populateWithArray($author, $authorData , AuthorInterface::class);
            $this->authorRepository->save($author);
        } catch (LocalizedException $e) {
            $messages[] = $this->getErrorWithAuthorId($author, $e->getMessage());
            $error = true;
        } catch (\RuntimeException $e) {
            $messages[] = $this->getErrorWithAuthorId($author, $e->getMessage());
            $error = true;
        } catch (\Exception $e) {
            $messages[] = $this->getErrorWithAuthorId(
                $author,
                __('Something went wrong while saving the author.')
            );
            $error = true;
        }
    }

    return $resultJson->setData([
        'messages' => $messages,
        'error' => $error
    ]);
}

回答:


5

その場合はsave()エンティティにアクセスする必要があるため、必ずそのメソッドを呼び出す必要があります。

リンクしたネイティブのコアMagentoファイルは、特に大量のアクションアクションクラスを実行する唯一のファイルではありません。

唯一の代替策はsaveAttribute、で実装されたものに基づいてCRUDリソースモデルにメソッドを追加することですapp/code/Magento/Sales/Model/ResourceModel/Attribute.php

public function saveAttribute(AbstractModel $object, $attribute)
{
    if ($attribute instanceof AbstractAttribute) {
        $attributes = $attribute->getAttributeCode();
    } elseif (is_string($attribute)) {
        $attributes = [$attribute];
    } else {
        $attributes = $attribute;
    }
    if (is_array($attributes) && !empty($attributes)) {
        $this->getConnection()->beginTransaction();
        $data = array_intersect_key($object->getData(), array_flip($attributes));
        try {
            $this->_beforeSaveAttribute($object, $attributes);
            if ($object->getId() && !empty($data)) {
                $this->getConnection()->update(
                    $object->getResource()->getMainTable(),
                    $data,
                    [$object->getResource()->getIdFieldName() . '= ?' => (int)$object->getId()]
                );
                $object->addData($data);
            }
            $this->_afterSaveAttribute($object, $attributes);
            $this->getConnection()->commit();
        } catch (\Exception $e) {
            $this->getConnection()->rollBack();
            throw $e;
        }
    }
    return $this;
}

この方法では、次を呼び出す代わりに:

$this->authorRepository->save($author);

次のようなことができるはずです。

$author->getResource()->saveAttribute($author, array_keys($authorData));

コメントで述べたように、AbstractAttributeニーズに一致するようにインスタンスをチェックする必要がない場合は、そのメソッドを少し変更する必要があります


適度な縫い目。ありがとう。私はそれを試して、結果を返します。
マリウス

@Mariusはちょうどこのメソッドは、EAVのより少し異なっていることに注意してくださいsaveAttributeそれだけで1つの属性コードの代わりに保存するために、「属性コード」の配列を受け入れるような方法
ラファエルデジタルPianismで

1
それに気づきました。AbstractAttributeフラットエンティティでは必要ないため、パラメーターとしてのインスタンスを受け入れないように少し変更しました。スムーズに動きます。再度、感謝します。
マリウス
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.