CakePHP是一個用於處理動態程式設計的開源工具;它為開發人員提供了不同類型的內建標籤來處理 HTML 表單。表單是 CakePHP 提供的用於可靠處理 HTML 表單的標籤之一,或者我們可以說它與其他 PHP 框架一樣簡單且安全。優點之一是我們可以使用 CakePHP 來產生不同的 HTML 元素。在 CakePHP 中,我們可以透過使用內建標籤和方法輕鬆地根據我們的要求建立表單,並進行所有必要的驗證、不同的佈局。
廣告 該類別中的熱門課程 PHP 開發人員 - 專業化 | 8 門課程系列 | 3次模擬測驗開始您的免費軟體開發課程
網頁開發、程式語言、軟體測試及其他
此結構包含強大的結構庫記錄,用於在 CakePHP 中執行各種活動。此表單的重點是透過這種方式有效地建立結構,以便簡化審批、重新填入和配置。在表單中,有不同的結構標籤,我們將使用它們在格式組織器中建立結構。此外,該表格非常靈活,這意味著它可以透過使用正確的標點符號和策略來實現特定結果,從而完成您需要顯示的幾乎所有結構。一行程式碼比 HTML 程式碼綽綽有餘,因為我們需要編寫龐大的程式碼來建立結構,但在 Form 中,我們需要為結構編寫一個簡單的語法。
現在讓我們看看如何在 CakePHP 中建立表單,範例如下。 首先,我們需要建立一個表單:通常我們知道,當我們使用表單類別時,我們還需要定義子類別。
例如:
namespace App\Form; use Cake\Form\Form; use Cake\Form\Schema; use Cake\Validation\Validator; class sampleForm extends Form { protected function buildSchema(Schema $schema): Schema { return $schema->addField('Emp Name', 'string') ->addField('Emp Email', ['type' => 'string']) ->addField('Emp Address', ['type' => 'text']); } public function validationDefault(Validator $valid): Validator { $valid->minLength('Emp Name', 20) ->Emp Email('email'); return $valid; } protected function _run(array $data): bool { // Send an email. return true; } }
說明
在上面的範例中,我們使用了三種不同的方法,分別是 buildSchema、defaultvalidation 和 run,如圖所示。
接下來,我們需要在控制器內部編寫處理請求資料的程式碼,如下所示。
namespace App\Controller; use App\Controller\AppController; use App\Form\ sampleForm; class SampleController extends AppController { public function index() { $sample= new sampleForm (); if ($this->request->is('post')) { if ($sample->execute($this->request->getData())) { $this->Flash->success( ‘Welcome Done’); } else { $this->Flash->error('There is Problem'); } } $this->set('sample', $sample); } }
之後,我們需要設定表單值,最後,我們需要根據我們的要求建立帶有表單的 HTML。
現在讓我們來看一個例子,以便更好地理解,如下。
首先,我們需要如下配置routes.php。
<?php use Cake\Http\Middleware\CsrfProtectionMiddleware; use Cake\Routing\Route\DashedRoute; use Cake\Routing\RouteBuilder; $routes->setRouteClass(DashedRoute::class); $routes->scope('/', function (RouteBuilder $builder) { $builder->registerMiddleware('csrf', new CsrfProtectionMiddleware([ 'httpOnly' => true, ])); $builder->applyMiddleware('csrf'); //$builder->connect('/pages',['controller'=>'Pages','action'=>'display', 'home']); $builder->connect('register',['controller'=>'ContactForm','action'=>'index']); $builder->fallbacks(); });
現在我們需要建立一個與上面程式碼類似的控制器文件,因此建立一個控制器文件並編寫以下程式碼。
<?php namespace App\Controller; use App\Controller\AppController; class ContactFormController extends AppController{ public function index(){ $country = array('India',England',Canada'); $this->set('country',$country); $gender = array('Male','Female'); $this->set('gender',$gender); } } ?>
說明
在上面的程式碼中,我們編寫了國家和性別等聯絡資訊的程式碼。 現在建立一個索引檔案並編寫以下程式碼。
<?php echo $this->Form->create(NULL,array('url'=>'/sampleForm')); echo '<label for="name">Name</label>'; echo '<label for="country">Country</label>'; echo $this->Form->select('country',$country); echo '<label for="gender">Gender</label>'; echo $this->Form->radio('gender ',$gender); echo '<label for="address">Address</label>'; echo $this->Form->text ('address'); echo $this->Form->button('Submit'); echo $this->Form->end(); ?>
執行上述程式碼後,我們將得到如下螢幕,如下圖所示。
假設我們選擇了像印度這樣的國家,如下圖所示。
現在輸入一些詳細信息,如以下螢幕截圖所示的姓名和地址。
現在點擊提交按鈕,我們會收到一封歡迎訊息。
現在讓我們看看CakePHP中的表單函數如下。
選擇選項
用於傳回數組元素。
文法
selectOptions( array $specifiedarrayelement(), array $parentsarrayelement(), boolean $showParentsnull, array $attributesarray() )
說明
在上面的語法中,我們使用具有不同參數的 selectOption 函數,例如元素的格式、父元素組和不同的 HTML 屬性。基本上,它會傳回數組。
選
用於選擇格式化元素。
文法
select( string $Specified Name field, array $required options of array(), array $specified attributes array() )
說明
在上面的語法中,我們使用具有不同參數的 select 函數,指定的 name 欄位用於選擇 name 屬性,陣列也用於選擇元素並傳回所選元素。
按鈕
它用於建立帶有類型的按鈕。
文法
Button(string $specified name, array $optionsarray() )
說明
按鈕的銘文。不是自然的 HTML 編碼。一組選擇和 HTML 歸屬,並傳回按鈕標籤。
複選框
透過使用此函數,我們根據我們的要求在表單內建立一個複選框。
文法
Checkbox(string $Specifed name field, array $optionsarray() )
說明
In the above syntax, we use a checkbox function with different parameters such as name and array attributes. It returns the text input element.
Create
It is used to return the returned form element.
Syntax
create( mixed $nullmodel value , array $array() )
Explanation
Here we need to specify the name of the model and the array of specified HTML attributes.
File
By using this function, we can create the file and return the generated file.
Hidden
It is used to create the hidden file and returns the generated hidden input.
Input
It is used to create input elements and return the form widget.
Radio
It is used to create a set of radio buttons and returns the radio widget.
Submit
It is used to create a submit button element and it returns the HTML submit.
Here we can set the default value for form by using setData() method as per our requirement as shown in the following code.
namespace App\Controller; use App\Controller\AppController; use App\Form\ContactForm; class SampleController extends AppController public function index() { $sample = new SampleForm(); if ($this->request->is('post')) { if ($contact->execute($this->request->getData())) { $this->Flash->success(' Welcome Done '); } else { $this->Flash->error('There is Problem'); } } if ($this->request->is('get')) { $contact->setData([ 'Emp of name' => 'sam', Emp'email' => [email protected]' ]); } $this->set('sample', $sample); } }
We hope from this article you learn more about the CakePHP form. From the above article, we have taken in the essential idea of the CakePHP form and we also see the representation and example of the CakePHP form. From this article, we learned how and when we use the CakePHP form.
以上是CakePHP 表單的詳細內容。更多資訊請關注PHP中文網其他相關文章!