«magento2-dev-beta» 태그된 질문

Magento 2.0.0의 개발자 베타 릴리스와 관련된 문제. 공식적으로는 2014 년 12 월 18 일부터 2015 년 1 분기 말까지의 기간입니다.

3
Magento 2 Stable은 새로운 eshop 개발을 시작하기에 충분합니까? [닫은]
폐쇄되었습니다 . 이 질문은 의견 기반 입니다. 현재 답변을받지 않습니다. 이 질문을 개선하고 싶습니까? 이 게시물 을 편집 하여 사실과 인용으로 답변 할 수 있도록 질문을 업데이트하십시오 . 휴일 3 년 전 . 새로운 E-Shop 개발 을 시작하고 싶지만 현재 Magento2 경험이 너무 느리고 충돌하여 편안한 개발을 할 수 없습니다. …

6
magento 2 베타의 프런트 엔드에서 세션 메시지를 표시하는 방법
magento 2 모듈에 오류 또는 성공 메시지를 표시하고 싶습니다. 클래스 이름으로 프론트 엔드 컨트롤러를 확장했습니다 \Magento\Framework\App\Action\Action. 그런 다음 다음 코드를 사용하여 클라이언트를 홈페이지로 리디렉션합니다. $this->messageManager->addError($SomeMessage); $resultRedirect = $this->resultRedirectFactory->create(); $resultRedirect->setPath($base_path); 모든 것이 잘 작동하지만이 줄은 오류를 인쇄하지 않습니다. $this->messageManager->addError($SomeMessage);


3
마 젠토 2 : 제품 컬렉션에 가시성 및 상태 필터 적용
제품 컬렉션에 가시성 및 상태 필터를 적용하고 싶습니다. 마 젠토 1에서와 같이 : Mage::getSingleton('catalog/product_status')->addVisibleFilterToCollection($collection); Mage::getSingleton('catalog/product_visibility')->addVisibleInCatalogFilterToCollection($collection); Magento 2에서 제품 컬렉션을 얻었지만 위의 필터를 적용하는 기능을 찾지 못했습니다.

1
이메일 템플릿 'custom_mail_template'이 (가) 정의되지 않았습니다
맞춤 모듈에서 메일을 보내려고합니다. 이를 위해 system.xml파일을 만들었지 만 오류를 반환합니다. 오류: 이메일 템플리트 'custom_mail_template'이 (가) 정의되지 않았습니다. 내 코드는 다음과 같습니다 <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> <system> <tab id="custom" translate="label" sortOrder="1"> <label>custom mail</label> </tab> <section id="custom" translate="label" type="text" sortOrder="100" showInDefault="1" showInWebsite="1" showInStore="1"> <label>custom mail</label> <tab>custom</tab> <resource>Learning_Custom::config_custom</resource> <group id="mail" translate="label" …


6
현재 영역에 대한 삭제 조작이 금지되어 있습니다.
간단한 제품의 삭제 작업에 대한 명령을 sku로 작성하고 싶습니다. 다음과 같은 오류가 발생합니다. 관리 영역을 설정하는 방법은 무엇입니까? [Magento \ Framework \ Exception \ LocalizedException] 현재 영역에 대한 삭제 작업이 금지되어 있습니다. <?php namespace Sivakumar\Sample\Console; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputOption; class DeleteSimpleProduct extends Command { protected $_product; …

2
magento 2에서 사용자 정의 모듈 JS 파일을로드하는 방법은 무엇입니까?
magento 2 용 배너 슬라이더 모듈을 만들었습니다. 다음과 같은 방법으로 잘 작동하는 JS 파일을 호출했습니다. 블록 클래스에서 다음 함수를 만들었습니다. public function getBaseJs($fileName){ return $this->_storeManager->getStore()->getBaseUrl( \Magento\Framework\UrlInterface::URL_TYPE_MEDIA ).'bannerslider/js/'.$fileName; } 이 함수는 bannerslider.phtml다음과 같이 파일 에서 호출됩니다 . <script type="text/javascript" src="<?php echo $this->getBaseJs('jquery-1.7.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->getBaseJs('jquery.flexslider.js') ?>"></script> 그러나 jQuery …

1
마 젠토 2 : 인터셉터 생성에서 클래스 제외
Magento 2 (beta9 이상)에서이 명령을 실행할 수 php bin/magento setup:di:compile있으며 모든 인터셉터, 팩토리 및 프록시 (및 기타)가 var/generationmagento 인스턴스에있는 모든 클래스 의 폴더에 생성됩니다 . 그렇지 않으면 위에서 언급 한 클래스가 필요할 때 런타임에 생성되어 성능에 영향을 줄 수 있으므로 실제 환경에 유용합니다. 명령을 실행할 때 인터셉터가 작성되지 않도록이 스크립트에서 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.