Questions tagged «magento2-dev-beta»

与Magento 2.0.0的开发人员beta版本有关的问题。这是从2014年12月18日到2015年第一季度末的正式时间。

3
Magento 2是否足够稳定以开始开发新的eshop?[关闭]
已关闭。这个问题是基于观点的。它当前不接受答案。 想改善这个问题吗?更新问题,以便通过编辑此帖子以事实和引用的形式回答。 4年前关闭。 我想开始开发新的E-Shop,但是我目前的Magento2体验太慢且崩溃,无法进行舒适的开发。 我已经在Windows XAMPP上尝试了Master和Dev分支。发现前端商店和管理面板都因随机错误不断挂起/崩溃。例如:https : //github.com/magento/magento2/issues/1734 Magento 2在Unix上更稳定吗?是否值得尝试在VM上进行设置?

6
如何在magento 2 Beta中在前端显示会话消息
我想在magento 2模块中显示错误或成功消息。我用类名扩展了前端控制器\Magento\Framework\App\Action\Action。然后我使用以下代码将客户端重定向到主页 $this->messageManager->addError($SomeMessage); $resultRedirect = $this->resultRedirectFactory->create(); $resultRedirect->setPath($base_path); 一切正常,但此行从不打印错误 $this->messageManager->addError($SomeMessage);


3
Magento 2:对产品集合应用可见性和状态过滤器
我想在产品集合上应用可见性和状态过滤器。像在Magento 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" type="text" sortOrder="1" showInDefault="1" showInWebsite="0" showInStore="0"> <label>Custom</label> <field id="active" translate="label" type="select" sortOrder="0" showInDefault="1" showInWebsite="1" showInStore="1"> <label>Enabled</label> <source_model>Magento\Config\Model\Config\Source\Yesno</source_model> </field> <field …


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; public function __construct(\Magento\Catalog\Model\Product $_product) { $this->_product =$_product; parent::__construct(); } /** * {@inheritdoc} */ protected function configure() { $this->setName('delete_simple_product') ->setDescription('Delete Simple Product') ->setDefinition($this->getOptionsList()); parent::configure(); …

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的依赖机制require.js我该怎么办呢?

1
Magento 2:从生成拦截器中排除类
在Magento 2(beta9及更高版本)中,您可以运行此命令php bin/magento setup:di:compile,并且将在var/generation文件夹中为magento实例中具有的所有类生成所有拦截器,工厂和代理(也许还有其他)。 这对于实时环境很有用,因为否则,上述类将在需要时在运行时生成,并可能影响性能。 有没有办法从此脚本中排除某些类,以便在运行命令时不会创建拦截器? 例如:我希望控制器Magento\Backend\Controller\Adminhtml\Dashboard\RefreshStatistics不生成拦截器。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.