3
我無法使用http請求獲取從post方法發送的值。在magento 2 api中使用post方法在控制器中獲取值發送
我使用get方法獲取值,但我需要使用post方法獲取它。
我沒有使用任何視圖,我想調用http url,並使用post方法在我的控制器中發送一些數據。
這是我的控制器看起來像,
namespace Spaarg\eMenuApi\Controller\Index;
class Products extends \Magento\Framework\App\Action\Action
{
public function __construct(\Magento\Framework\App\Action\Context $context)
{
return parent::__construct($context);
}
public function execute()
{
//$token = $this->getRequest()->getPostValue();
$token = $this->getRequest()->getPost();
}
}
我是新來的Magento 2,我不明白是什麼問題。 如果有人能幫忙,這將會很棒。