หลีกเลี่ยงการบันทึกเป็นลูปในการกระทำโดยรวม


13

ฉันได้สร้างโมดูล CRUD ของตัวเองที่มีการดำเนินการแก้ไขแบบอินไลน์คล้ายกับหน้า CMS
ทุกอย่างทำงานได้ดี แต่เมื่อใช้ phpsniffer กับมาตรฐาน EcgM2ฉันได้รับคำเตือนนี้:

ตรวจพบเมธอด LSD รุ่น () ในลูป

ฉันจะหลีกเลี่ยงสิ่งนี้ได้อย่างไร
หมายเหตุ: คำเตือนเดียวกันจะปรากฏขึ้นหากฉัน "ดมกลิ่น" ไฟล์หลักที่ลิงก์ด้านบน
นี่คือ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()กิจการของคุณดังนั้นคุณจะต้องเรียกวิธีการนั้นอย่างแน่นอน

ไฟล์วีโอไอพีคอร์เนทีฟที่คุณเชื่อมโยงไม่ใช่ไฟล์เดียวที่ทำเช่นนั้นโดยเฉพาะคลาสแอคชั่นการกระทำแบบกลุ่ม

ทางเลือกเดียวคือการเพิ่ม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

@Marius โปรดทราบว่าวิธีนี้แตกต่างจากsaveAttributeวิธีEAV เล็กน้อยเนื่องจากยอมรับอาร์เรย์ของ "รหัสคุณลักษณะ" เพื่อบันทึกแทนรหัสแอตทริบิวต์เพียงรหัส
Raphael ที่ Digital Pianism

1
ฉันสังเกตเห็นว่า ฉันยังแก้ไขมันเล็กน้อยดังนั้นมันจะไม่ยอมรับและอินสแตนซ์ของAbstractAttributeพารามิเตอร์เป็นเพราะฉันไม่ต้องการมันในเอนทิตีแบนของฉัน มันทำงานได้อย่างราบรื่น ขอบคุณอีกครั้ง.
Marius
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.