Tôi đã tạo mô-đun CRUD của riêng mình có chứa hành động chỉnh sửa nội tuyến tương tự như mô-đun cho các trang CMS
Mọi thứ đều hoạt động tốt, nhưng khi chạy phpsniffer với tiêu chuẩn EcgM2, tôi nhận được cảnh báo này:
Mô hình LSD mô hình save () được phát hiện trong vòng lặp
Làm thế nào tôi có thể tránh điều này?
Lưu ý: Cảnh báo tương tự xuất hiện nếu tôi "đánh hơi" tệp lõi được liên kết ở trên.
Đây là execute
phương pháp của tôi trong trường hợp ai đó cần nó. Nhưng nó rất giống với cái từ bộ điều khiển trang 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
]);
}