gpt4 book ai didi

magento2 - Magento 2 : save product review

转载 作者:行者123 更新时间:2023-12-05 08:08:55 24 4
gpt4 key购买 nike

我正在开发一个 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';
}
}

在撰写新评论后(以及更新评论状态后),这总是会给出一个空白页面。谁能找出我做错了什么?

最佳答案

感谢您的回复!我发现这只是一个缓存错误。 De代码需要重新编译才能工作。无论如何感谢您的回答。

关于magento2 - Magento 2 : save product review,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45252806/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com