Câu trả lời:
Bạn có thể thử cách sau để tạo khối mới bên trong bộ điều khiển
<?php
namespace [Vendor]\[Module]\Controller\[ControllerName];
use Magento\Framework\App\Action\Context;
class [YourControllerAction] extends \Magento\Framework\App\Action\Action
{
/**
* Index constructor.
*
* @param Context $context
*/
public function __construct(
Context $context
) {
parent::__construct($context);
}
/**
* @return
*/
public function execute()
{
$block = $this->_view->getLayout()->getLayout()
->createBlock('Magento\Customer\Block\Form\Login')
->setTemplate('Magento_Customer::form/login.phtml')
->toHtml();
$this->getResponse()->setBody($block);
}
}