AngularJS – 跟著Google玩網頁!

今天馬老師要與大家分享的是一個前端開發的函式庫AngularJS,前面的文章中都有提到,因為近年來行動裝置的普及讓Javascript大為活躍,不過傳統的Javascript在相容性上、操作上都非常的不方便,所以才有了許許多多Javascript的函式庫與框架的誕生,例如:jQuery、KnockoutJS、GSAP、PaperJS…等,每個Javascript的函式庫和框架的大小、作用和目的都不盡相同,有的是為了特效;有的則是為了方便操作,那今天為何要跟大家分享AngularJS呢?因為…它是名牌!

AngularJS 示意圖

為何說AngularJS是名牌呢?因為目前他是由Google來負責維護。初始版本是在2009年誕生的,比jQuery晚了三年,言下之意就會比jQuery好嗎?當然也不能這麼說,jQuery在目前還是一個非常火燙的前端開發函式庫,應該要說他們兩個在使用的架構和目的上會有所不同,這篇文章也來比較一下同樣的案例,在兩種語法上面撰寫的不同。

AngularJS 官方網頁截圖
AngularJS 官方網頁截圖

不過首先我們要知道基本的AngularJS開發方式,今天的案例我們利用JS Bin的線上開發網頁來說明,大家也可以到這個平台上來試著玩看看!如果需要利用AngularJS開發自己的網頁,也可以到AngularJS的官方網頁把JS下載到資料夾之後引用到網頁裡。

1. 首先點選Add library後選擇AngularJS Stable,這樣該平台就會加入AngularJS的函式庫進入頁面。

AngularJS JS Bin Add Library
AngularJS JS Bin Add Library

2. 在標籤中,加入ng-app的屬性,讓整份文件都可以使用AngularJS。

AngularJS JS Bin 增加 HTML 屬性
AngularJS JS Bin 增加 HTML 屬性

3. 接下來就可以在左手邊body標籤內開始輸入一些程式碼來測試,AngularJS在輸出方面有個基本的結構式「{{ }}」,大家輸入以下的程式碼來測試看看結果:  

<!DOCTYPE html>
<html ng-app>
<head>
	<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
	<meta charset="utf-8">
	<title>JS Bin</title>
</head>
<body>
	<p>{{ '馬老師雲端研究室' }}</p>
	<p>35+62={{ 35+62 }}</p>
	<p>NT{{ 62000 | currency }}</p>
</body>
</html>

可以看到輸出的結果應該是:(在JS Bin上面看AngularJS輸出結果

馬老師雲端研究室

35+62=97

NT$62,000.00

同樣的如果我們要利用jQuery來完成這樣的頁面,程式碼就會變成:(在JS Bin上面看jQuery輸出結果

<!DOCTYPE html>
<html>
<head>
	<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/numeral.js/1.4.5/numeral.min.js"></script>
	<meta charset="utf-8">
	<title>JS Bin</title>
</head>
<body>
	<p></p>
	<p></p>
	<p></p>
</body>
</html>
<script>
	$("p:eq(0)").text('馬老師雲端研究室')
	$("p:eq(1)").text('35+62=' + (35 + 62))
	$("p:eq(2)").text('NT' + (numeral(62000).format('$ 0,0.00')))
</script>

請注意,為了要完成第三項貨幣型式的呈現,我們還必須去引用這個網站的jQuery Plugin才有辦法比較輕鬆的實現。從上面的案例可以看的出來jQuery是由HTML DOM來抓到對象,再針對對象做操作,而AngularJS不管顯示的效果為何,就是在需要有程式運算的地方出現,所以AngularJS也被稱為符合MVC結構的Javascript函式庫(MVC是一種寫程式的結構,全名是Model View Controller,大家可以上網Google就可以查到很多與MVC相關的資料),但如果你有進入官網,可以看到官網上他的標題是「AngularJS – Superheroic JavaScript MVW Framework」,翻譯成中文大概是「AngularJS是一個符合MV…Whatever什麼什麼隨便啦!的超級函式庫」,可以看出Google的惡搞功夫。

再來示範第二個案例,本案例利用購物行為來製作相關的頁面讓大家參考,程式碼如下:

<!DOCTYPE html>
<html ng-app>
<head>
	<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
	<meta charset="utf-8">
	<title>JS Bin</title>
</head>
<body ng-init="stock=120;price=325;quantity=1;total=0">
	<p>馬老師雲端研究室 滑鼠墊</p>
	<p>剩餘:<span ng-model="stock">{{ stock-quantity }}</span>個</p>
	<p>單價:<span ng-model="price">{{ price | currency:"NT$":0 }}</span>元</p>
	<p>數量:<input type="number" min="0" max="{{ stock }}" ng-model="quantity"></p>
	<p>總金額:<span ng-model="total">{{ price*quantity | currency:"NT$":0 }}</span></p>
</body>
</html>

輸出結果:(在JS Bin上面看AngularJS輸出結果

AngularJS JS Bin 輸出結果
AngularJS JS Bin 輸出結果

在這個案例裡面有四個項目,分別是商品剩餘數量、單價、數量、總金額,使用者唯一可以改變的只有數量,但頁面中會自動運算剩餘數量和總金額,其中在語法body標籤中,加上了ng-init屬性,代表設定這幾個項目的預設值,stock(剩餘數量)120個、price(單價)325元、quantity(數量)1個,total(總金額)325元。接下來在span內的ng-model就是去綁定該定義項目,{{  }}則是顯示該項目或運算結果,另外貨幣格式的部分,也是用了一些設定讓貨幣在這個案例裡面顯示得更為接近台幣格式,另外還是用HTML5 input標籤的min和max來限制欄位內的值。 而這個案例如果轉換為jQuery的寫法,大概會是下面這樣子:(在JS Bin上面看jQuery輸出結果

<!DOCTYPE html>
<html>
<head>
	<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
	<script src="http://cdnjs.cloudflare.com/ajax/libs/numeral.js/1.4.5/numeral.min.js"></script>
	<meta charset="utf-8">
	<title>JS Bin</title>
</head>
<body>
	<p>馬老師雲端研究室 滑鼠墊</p>
	<p>剩餘:<span id="stock"></span>個</p>
	<p>單價:<span id="price"></span>元</p>
	<p>數量:<input type="number" min="0" ng-model="quantity" id="quantity"></p>
	<p>總金額:<span id="total"></span>元</p>
</body>
</html>
<script>
	var stock = 120;
	var price = 325;
	var quantity = 1;
	var total = 325;
	$("#stock").text(stock) $("#price").text('NT' + (numeral(price).format('$ 0,0'))) $("#quantity").val(quantity).attr(
		"max", stock) $("#total").text('NT' + (numeral(total).format('$ 0,0'))) $("#quantity").change(function () {
		quantity = $(this).val() newstock = stock - $(this).val() total = price * $(this).val() $("#stock").text(
			newstock) $("#price").text('NT' + (numeral(price).format('$ 0,0'))) $("#total").text('NT' + (
			numeral(total).format('$ 0,0')))
	})
</script>

後記:以上兩個案例示範的是jQuery和AngularJS在撰寫頁面的不同,不過因為這篇文章原本就是要以AngularJS為主,所以挑的案例當然會是AngularJS比較佔優勢的內容,還是跟我常說的一樣,做不同的東西就要用不同的工具,用錯了工具不是做不到,但可能是會事倍功半的!另外文章中的程式碼,都是嵌入遠端的JS檔,所以也可以把整個程式碼複製到你熟悉的網頁開發軟體內,一樣會看到同樣的結果喔!

You may also like...

4,270 Responses

  1. I conceive other website proprietors should take this web site as an example, very clean and fantastic user friendly pattern.

  2. Very efficiently written article. It will be useful to anyone who employess it, as well as me. Keep up the good work – can’r wait to read more posts.

  3. HaroldSpesk表示:


    Интернет-магазин климатической техники в Москве «Climatis.ru»

    Предлагая климатическую технику, мы гарантируем высокое качество всей реализуемой продукции.
    Каждое изделие проходит тщательную проверку, благодаря чему наши клиенты могут быть уверены в том, что техника прослужит долгие годы.

    Если требуется купить кондиционер, водонагреватель или любую другую бытовую технику,
    менеджеры компании «Climatis.ru» дадут необходимые консультации, расскажут обо всех услугах и
    посоветуют, какой агрегат будет оптимальным решением для конкретного помещения.

    Все оборудование в наличии на складе. Доставка до двери от 1 до 10 календарных дней.
    Стоимость доставки 500 рублей. При заказе монтажа доставка бесплатна.
    Официальный сайт «Climatis.ru».

  4. Hi. I want to ask a little something…is the following a wordpress web log as we are planning to be switching over to WP. Moreover did you make this template yourself? Thanks a lot.

  5. meritor wabco表示:

    I couldn’t refrain from commenting. Well written.

  6. fantastic post, very informative. I wonder why the other specialists of this sector do not notice this. You must continue your writing. I am confident, you have a great readers’ base already!

  7. Hi, i think that i noticed you visited my web site thus i came to °ßgo back the favor°®.I am attempting to to find things to improve my site!I suppose its adequate to use a few of your ideas!!

  8. I discovered your website website on yahoo and check several of your early posts. Keep the top notch operate. I recently additional encourage RSS feed to my MSN News Reader. Seeking toward reading far more from you finding out at a later date!…

  9. Very interesting details you have noted, thanks for putting up.

  10. Great post, I think blog owners should larn a lot from this web blog its really user friendly .

  11. Bjusyc表示:

    order voltaren – order aspirin 75 mg without prescription aspirin where to buy

  12. Youre so cool! I dont suppose Ive read anything like that prior to. So nice to discover somebody by original ideas on this subject. realy appreciate starting this up. this website is one thing that is required on the internet, a person if we do originality. beneficial job for bringing new stuff to the web!

  13. Edwardtuh表示:

    1xbet скачать: 1хбет зеркало – 1xbet официальный сайт

  14. Edwardtuh表示:

    1xbet скачать: 1xbet официальный сайт мобильная версия – 1хбет зеркало

  15. Edwardtuh表示:

    1xbet: 1xbet зеркало рабочее на сегодня – 1хбет зеркало

  16. Excellent web site. Lots of useful info here. I’m sending it to some friends ans also sharing in delicious. And obviously, thanks for your effort!

  17. sitemap.xml表示:

    Itss like you reawd my mind! Youu appezr too know a lot abbout this, like yyou wrotte the book iin iit oor something.
    I think thatt youu caan do with a few pics tto drivve thee msssage homne a bit,
    but inhstead off that, this iss fantastic blog. An excellent read.
    I will certainl bbe back.

  18. I image this could be various upon the written content material? however I nonetheless believe that it usually is suitable for nearly any type of matter material, because it will frequently be enjoyable to resolve a heat and delightful face or perhaps listen a voice while preliminary landing.

  19. Jerryviazy表示:


    Интернет-магазин климатической техники «СКСэйл»

    Канальные, кассетные кондиционеры и сплит-системы, а также все, что вы хотите знать о кондиционерах, есть на нашем сайте. Подробно рассказано об оконных и канальных кондиционерах, тепловых завесах, системах вентиляции, очистителях, увлажнителях и осушителях воздуха. Цены на продукцию можно посмотреть в каталоге.

    Продажа, монтаж и установка кондиционеров — это наша работа, которую мы выполняем профессионально и с огромным удовольствием. Мы предлагаем только лучшее оборудование, которое хорошо зарекомендовало себя в России и признанно во всем мире.

    Мы продаём не только бытовые сплит системы, но и колонные конционеры, канальные кондиционеры, потолочные и центральные системы кондиционирования.
    Центральные кондиционеры отлично подойдут для средних и больших загородных коттеджей, поскольку внешний блок будет только один. Установка кондиционеров любого типа производится нами в максимально сжатые сроки.
    Официальный сайт «СКСэйл».

  20. Annual Consolidated Administration Report, Corporate Governance Declaration, Consolidated Non-Monetary Assertion, Consolidated Report on Payments to Governmentns, Unbiased Auditor’s Report, and Consolidated Monetary Statements – 31 December 2020 (Report).

  21. Truly, the initiative was not taken by the company or its director, Alexander Orlow, but it was proposed by two semi-state organizations that meant to advertise modern artwork and tradition in the service of peace, the Fondation Européenne de la Culture and the Nationale Kunststichting.

  22. To address these complexities, expert testimony on eyewitness memory has emerged as a valuable tool in legal proceedings.

  23. On November 6, 2017, CNBC reported The Walt Disney Company was negotiating a deal with Rupert Murdoch to accumulate 21st Century Fox’s filmed entertainment, cable leisure, and direct broadcast satellite divisions, together with twentieth Century Fox, FX Networks, and National Geographic Partners.

  24. The prevailing market sentiment was evident effectively before these orders were positioned, and the orders, in addition to the way during which they have been entered, were each reputable and per market practices.

  25. The name of first share trading association was “Native share and Stock broker’s association” which later on came to be known as Bombay Stock Exchange (BSE).At present the Indian share market consists two major stock exchanges, one is Bombay stock exchange (BSE) and the other one is National stock exchange (NSE).The BSE of the Indian share market is present in 417 towns and cities all across India.

  26. Since HELOCs are intended by banks to primarily sit in second lien place, they normally are only capped by the maximum curiosity fee allowed by regulation within the state whereby they are issued.

  27. ounce of weed表示:

    Great info. Lucky me I recently found your site by chance (stumbleupon). I’ve bookmarked it for later.

  28. Great post, I conceive website owners should learn a lot from this web blog its rattling user genial .

  29. Can I just say what a comfort to uncover somebody who genuinely knows what they are discussing on the internet. You definitely realize how to bring a problem to light and make it important. A lot more people have to check this out and understand this side of your story. I was surprised you are not more popular given that you surely possess the gift.

  30. You have noted very interesting details! ps decent web site.

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。