1
フロントエンドから作成されたばかりの、または作成しようとしているレコードのUIDが必要です。TYPO3:作成されたレコードのUIDを取得する
public function createAction(\Vendor\EXT\Domain\Model\FeUserX $newFeUserX)
{
// $this->addFlashMessage('The object was created.', '', \TYPO3\CMS\Core\Messaging\AbstractMessage::ERROR);
$uid = $newFeUserX->getUid(); // something like this
$this->feUserXRepository->add($newFeUserX);
$this->redirect('list');
}
ありがとうございます!
()適切な注釈を忘れないでください – biesior