真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

AngularJS怎么在Node.js中使用

本篇文章給大家分享的是有關(guān)AngularJS怎么在Node.js中使用,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

連云網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、成都響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站于2013年開始到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站

AngularJS是什么

AngularJS其實就是一個js庫,一個js文件,幫助我們更好的開發(fā)Web前端。在github上,AngularJS這么介紹自己:

AngularJS lets you write client-side web applications as if you had a smarter browser. It lets you use good old HTML (or HAML, Jade and friends!) as your template language and lets you extend HTML's syntax to express your application's components clearly and succinctly. It automatically synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data binding. To help you structure your application better and make it easy to test, AngularJS teaches the browser how to do dependency injection and inversion of control.
Oh yeah and it helps with server-side communication, taming async callbacks with promises and deferreds. It also makes client-side navigation and deeplinking with hashbang urls or HTML5 pushState a piece of cake. Best of all?? It makes development fun!

都是英文的,Are u OK?

按我的理解,這幾點是比較重要的:

  1. 擴展HTML語法,動態(tài)修改HTML

  2. 雙向數(shù)據(jù)綁定

  3. 提供針對前端和后端的各種服務(wù),比如http,http,cookie,window,window,timeout,$document等,方便開發(fā)者

還有很多基于AngularJS的UI庫,幫助我們構(gòu)建復(fù)雜的Web UI,比如https://github.com/angular-ui或https://github.com/angular-ui/bootstrap。

AngularJS的學(xué)習(xí)資源

很多,Google或百度吧。另外推薦:https://github.com/jmcunningham/AngularJS-Learning。

也有很多專門講AngularJS開發(fā)的圖書,不過我沒看過。我看的是《Node.js+MongoDB+AngularJS Web開發(fā)》,我覺得蠻不錯的,涵蓋了MEAN(Node.js-Express-AngularJS-MongoDB)技術(shù)棧,是想用一種語言成就全棧工程師夢想的不錯選擇。

在Node.js中支持AngularJS

AngularJS是一個客戶端的JavaScript庫,要想在Node.js里支持它,只要在HTML模板中嵌入script標(biāo)記,讓客戶端能獲取到angular.js文件就成了。

比如這樣:

[code][/code]

但這基本上是死路一條,因為國內(nèi)Google不通啊。所以,最好是翻qiang或VPN下載下來,部署到你的網(wǎng)站上,然后這樣:

在HTML文檔中使用AngularJS

  1. 這基本上分為四個部分:

  2. 使用ng-app指令定義應(yīng)用程序模塊

  3. 加載在script標(biāo)簽中定義的angular.js庫

  4. 在HTML文檔里插入angular相關(guān)的指令(directive)

  5. 實現(xiàn)控制器(一般在一個js文件里)

下面是一個使用AngularJS的HTML文檔:




 Node.js + Express + AngularJS


 
 

Favorite Frameworks:

 {{framework}}  
   

上面的文檔內(nèi)引用到的frameworks.js內(nèi)容如下:

angular.module('myApp', []).
 controller('myController', ['$scope', function($scope){
 $scope.frameworks = ['Node.js', 'Express', 'AnjularJS'];
 }]);

把frameworks.html文件放在HelloExpress的public目錄下面,把frameworks.js放在public/javascripts目錄下,運行網(wǎng)站,在瀏覽器打開地址“http://localhost:3000/frameworks.html”,效果如下圖所示:

AngularJS怎么在Node.js中使用

在jade模板中使用AngularJS

其實jade模板文件里使用AngularJS,只需要將Angular指令嵌入即可,沒什么特別的。如果你有現(xiàn)成的html文檔,也可以使用html轉(zhuǎn)jade的在線工具來轉(zhuǎn)換為jade模板文件,在這里:http://html2jade.org。

前面使用了AnjularJS的HTML文檔,對應(yīng)的jade模板文件frameworks.jade內(nèi)容如下:

doctype html
html(ng-app="myApp")
 head
 title Node.js + Express + AngularJS
 body
 div(ng-controller="myController")
  h4 Favorite Frameworks:
  li(ng-repeat="framework in frameworks")
  {{framework}}

 script(src="/javascripts/angular-1.4.3.min.js")
 script(src="/javascripts/frameworks.js")

以上就是AngularJS怎么在Node.js中使用,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章題目:AngularJS怎么在Node.js中使用
文章地址:http://weahome.cn/article/poiejj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部