詳細分析使用AngularJS編程中提交表單的方式

來源:互聯網
上載者:User

  這篇文章主要介紹了詳細分析使用AngularJS提交表單的方式,AngularJS是非常熱門的JavaScript庫,文中展示了AngularJS在前端與後端的PHP進行互動的情境,需要的朋友可以參考下

  在AngularJS出現之前,很多開發人員就面對了表單提交這一問題。由於提交表單的方式繁雜而不同,很容易令人瘋掉……然而現在看來,依然會讓人瘋掉。

  今天,我們會看一下過去使用PHP方式提交的表單,現在如何將其轉換為使用Angular提交。使用Angular來處理表單,對我而言,是一個“啊哈”時刻(譯者:表示瞭解或發現某事物的喜悅)。即使它甚至都沒有涉及多少Angular表層的東西,但是它卻協助使用者看到表單提交之後的潛力,並且理解兩種資料繫結方式。

  我們會使用jQuery平台來進行這個處理過程。所以所要做的工作首先使用javascript。我們會提交表單,展示錯誤資訊,添加錯誤類,並且在javascript中顯示和隱藏資訊。

  之後,我們會使用Angular。在使用之前,我們要做大部分所需的工作,並且我們之前所做的很多工作會非常容易。讓我們開始吧。

  簡單的表單

  我們會關注兩種提交表單的方式:

  舊方法:jQuery和PHP提交表單

  新方法:AngularJS和PHP提交表單

  首先看一下我們的表單,超級簡單:

  形式要求

  實現頁面無重新整理表單處理

  輸入姓名和超級英雄別名

  如果有錯誤,顯示錯誤提示

  如果輸入有誤,將輸入變成紅色

  如果所有內容ok,顯示成功提示

  文檔結構

  在我們的展示中,僅需兩個檔案

  index.html

  process.php

  表單處理

  讓我們建立一個PHP來處理表單。該頁面非常小並且使用POST方式提交資料。

  處理表單:這對我們來說並不是那麼重要的。你可以使用其他你喜歡的語言來處理你的表單。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 // process.php   <?php   $errors = array(); // array to hold validation errors $data = array(); // array to pass back data   // validate the variables ====================================================== if (empty($_POST['name'])) $errors['name'] = 'Name is required.';   if (empty($_POST['superheroAlias'])) $errors['superheroAlias'] = 'Superhero alias is required.';   // return a response ===========================================================   // response if there are errors if ( ! empty($errors)) {   // if there are items in our errors array, return those errors $data['success'] = false; $data['errors'] = $errors; } else {   // if there are no errors, return a message $data['success'] = true; $data['message'] = 'Success!'; }   // return all our data to an AJAX call echo json_encode($data);

  這是一個非常簡單的表單處理指令碼。我們僅檢查資料是否存在,如果存在,則不做任何處理和操做;如果不存在,則需要向$errors數組中添加一條資訊。

  為了返回我們的資料用於AJAX調用,我們需要使用echo和json_encode。這就是我們PHP表單處理所有需要做的操作。使用普通的jQuery AJAX或者Angular處理表單也是這樣的。

  展示表單

  讓我們建立一個HTML來展示我們的表單

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 <!-- index.html -->   <!doctype html> <html> <head> <title>Angular Forms</title>   <!-- LOAD BOOTSTRAP CSS --> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.2/css/bootstrap.min.css">   <!-- LOAD JQUERY --> <!-- when building an angular app, you generally DO NOT want to use jquery --> <!-- we are breaking this rule here because jQuery's $.param will help us send data to our PHP script so that PHP can recognize it --> <!-- this is jQuery's only use. avoid it in Angular apps and if anyone has tips on how to send data to a PHP script w/o jQuery, please state it in the comments --> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>   <!-- PROCESS FORM WITH AJAX (OLD) --> <script> <!-- WE WILL PROCESS OUR FORM HERE --> </script> </head> <body> <div class="container"> <div class="col-md-6 col-md-offset-3">   <!-- PAGE TITLE --> <div class="page-header"> <h1><span class="glyphicon glyphicon-tower"></span> Submitting Forms with Angular</h1> </div>   <!-- SHOW ERROR/SUCCESS MESSAGES --> <div id="messages"></div>   <!-- FORM --> <form> <!-- NAME --> <div id="name-group" class="form-group"> <label>Name</label> <input type="text" name="name" class="form-control" placeholder="Bruce Wayne"> <span class="help-block"></span> </div>   <!-- SUPERHERO NAME --> <div id="superhero-group" class="form-group"> <label>Superhero Alias</label> <input type="text" name="superheroAlias" class="form-control" placeholder="Caped Crusader"> <span class="help-block"></span> </div>   <!-- SUBMIT BUTTON --> <button type="submit" class="btn btn-success btn-lg btn-block"> <span class="glyphicon glyphicon-flash"></span> Submit! </button> </form>   </div> </div> </body> </html>

  現在,我們有了表單。我們另外還使用了Bootstrap來使表單看起來不是那麼醜。使用Bootstrap文法規則,每個input下含有一個spot來展示我們文本的錯誤資訊。

  使用jQuery提交表單

 

  現在,讓我們來使用jQuery處理表單提交。我會將所有的代碼添加到空的  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.