답변:
다음 모듈이 있다고 가정합니다 Company/Module
.
/ 응용 프로그램 / 코드 / 회사 소개 / 모듈 / 기타 / 프론트 엔드 / routes.xml
관리 할 경로를 만듭니다.
<?xml version="1.0" encoding="UTF-8"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="companymodule" frontName="companymodule">
<module name="Company_Module"/>
</route>
</router>
</config>
/ app / code / Company / Module / view / frontend / layout / module_index_booking.xml
블록을 양식 페이지 phtml 템플리트에 연관시키기위한 기본 레이아웃 작성
<?xml version="1.0"?>
<page layout="2columns-left" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<title>HTML title - The booking form page</title>
</head>
<body>
<referenceBlock name="navigation.sections" remove="true" />
<referenceContainer name="content">
<block class="Company\Module\Block\Booking" name="companymodule.booking" template="Company_Module::booking.phtml"/>
</referenceContainer>
</body>
</page>
/ app / code / Company / Module / Block / Booking.php
양식에 원하는 많은 기능을 가진 블록을 만듭니다.
<?php
namespace Company\Module\Block;
class Booking extends \Magento\Framework\View\Element\Template
{
/**
* Construct
*
* @param \Magento\Framework\View\Element\Template\Context $context
* @param array $data
*/
public function __construct(
\Magento\Framework\View\Element\Template $context,
array $data = []
)
{
parent::__construct($context, $data);
}
/**
* Get form action URL for POST booking request
*
* @return string
*/
public function getFormAction()
{
// companymodule is given in routes.xml
// controller_name is folder name inside controller folder
// action is php file name inside above controller_name folder
return '/companymodule/controller_name/action';
// here controller_name is index, action is booking
}
}
/ app / code / Company / Module / view / frontend / templates / booking.phtml
HTML 양식으로 템플릿을 만들고 라우팅에 해당하는 양식 작업을 추가하십시오.
<h1>Booking page</h1>
<form action="<?php echo $block->getFormAction() ?>" method="post">
<input name="firstname" type="text">
<input name="lastname" type="text">
<input name="phone" type="text">
<input name="bookingTime" type="date">
<input type="submit" value="Send booking informations">
</form>
/ app / code / 회사 / 모듈 / 컨트롤러 / 인덱스 /Booking.php
라우트에서 요청을 관리하기 위해 조치 제어기를 작성하십시오.
<?php
namespace Company\Module\Controller\Index;
use Magento\Framework\Controller\ResultFactory;
class Booking extends \Magento\Framework\App\Action\Action
{
/**
* Booking action
*
* @return void
*/
public function execute()
{
// 1. POST request : Get booking data
$post = (array) $this->getRequest()->getPost();
if (!empty($post)) {
// Retrieve your form data
$firstname = $post['firstname'];
$lastname = $post['lastname'];
$phone = $post['phone'];
$bookingTime = $post['bookingTime'];
// Doing-something with...
// Display the succes form validation message
$this->messageManager->addSuccessMessage('Booking done !');
// Redirect to your form page (or anywhere you want...)
$resultRedirect = $this->resultFactory->create(ResultFactory::TYPE_REDIRECT);
$resultRedirect->setUrl('/companymodule/index/booking');
return $resultRedirect;
}
// 2. GET request : Render the booking page
$this->_view->loadLayout();
$this->_view->renderLayout();
}
}
다시 시작하면 다음과 같은 아키텍처가 있습니다.
앱 ├ 코드 | ├ 회사 | | ├ 모듈 | | | ├ 블록 | | | | ing Booking.php | | | ├ 컨트롤러 | | | | ├ 색인 | | | | | ing Booking.php | | | ├ 등 | | | | 프론트 엔드 | | | | | ├ route.xml | | | ├보기 | | | | 프론트 엔드 | | | | | ├ 레이아웃 | | | | | | _ module_index_booking.xml | | | | | ├ 템플릿 | | | | | | ├ booking.phtml
그런 다음 다음 명령을 실행하십시오.
php bin/magento setup:upgrade
php bin/magento setup:di:compile
php bin/magento cache:flush
그런 다음 사용자 정의 양식 페이지에 액세스 할 수 있습니다. http : // localhost / companymodule / index / booking
행복한 코딩!