我正在制作一个 Magento 2 扩展程序,该程序会在撰写新产品评论时向我发送消息。我试图创建一个观察者,但它似乎永远不会起作用。
在ets/events.xml
中,我有这个:
<event name="review_save_after">
<observer
name = "jeroen_update_product_review"
instance = "Jeroen\ReviewIntegration\Observer\ProductReview" />
</event>
在Jeroen\ReviewIntegration\Observer\ProductReview
:
namespace Jeroen\ReviewIntegration\Observer;
use Magento\Framework\Event\ObserverInterface;
class ProductReview implements ObserverInterface
{
protected $_storeManager;
protected $_request;
public function __construct(
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\App\Request\Http $request
) {
$this->_storeManager = $storeManager;
$this->_request = $request;
}
public function execute(\Magento\Framework\Event\Observer $observer)
{
return 'test';
}
}
在撰写新评论后(以及更新评论状态后),这始终会显示空白页。任何人都可以找出我做错了吗?
答案 0 :(得分:0)
感谢您的回复!我发现这只是一个缓存错误。 De代码在工作之前需要重新编译。无论如何,谢谢你的回答。
答案 1 :(得分:0)
审核保存后我们可以使用Plugin实现任何功能
<块引用>di.xml 文件
<type name="Magento\Review\Controller\Product\Post">
<plugin name="After_save_product_review"
type="Module\Custom\Plugin\UpdateReviewSaveAfter" />
</type>
<块引用>
插件文件
namespace Module\Custom\Plugin;
class UpdateReviewSaveAfter
{
public function afterExecute(
\Magento\Review\Controller\Product\Post $subject,
$result)
{
//your fuctionality
return $result;
}
}
答案 2 :(得分:-1)
确保在php.ini中设置了足够的memory_limit
php.ini值为:
post_max_size = 1024M
upload_max_filesize = 1024M
memory_limit = 3G
max_execution_time = 500