«url-key» 태그된 질문

6
Magento 2 사용자 지정 관리자 작업이 대시 보드로 리디렉션 됨
Magento 2 기초 개발 과정을 수강하고 Admin Router / Controller 연습이 오래되었습니다. 라우터는 작동하지만 컨트롤러는 작동하지 않으며 항상 관리자 홈페이지로 다시 라우팅됩니다. 라우터 앱 / 코드 / 훈련 / 테스트 /etc/adminhtml/routes.xml의 코드 : <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/framework/App/etc/routes.xsd"> <router id="admin"> <route id="test" frontName="test"> <module name="Training_Test" before="Magento_Backend" /> </route> </router> </config> …

6
Magento2-ID로 카테고리 URL 가져 오기
주어진 카테고리의 URL 키를 ID로 얻으려고합니다. 내가 이거 가지고있어; $categoryId = 3; $_objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $object_manager = $_objectManager->create('Magento\Catalog\Model\Category')->load($categoryId); print_r($object_manager->getData()); 그리고 이것은 작동합니다 (print_r에는 필요한 URL 키가 있습니다). 카테고리 3은 최상위 카테고리입니다. 하위 범주 (예 : ID 5)를 시도 할 때마다 빈 배열이 나타납니다. 나는 단지 단어를 잃어 버렸고 그것을 이해할 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.