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
]);
}