概述
單頁應用程式現在越來越受歡迎。模擬單頁應用程式行為的網站都能提供手機/平板電腦應用程式的感覺。 Angular可以幫助我們輕鬆創建此類應用程式
簡單應用
我們打算創建一個簡單的應用,涉及主頁,關於和聯繫我們頁面。雖然Angular是為創建比這更複雜的應用而生的,但本教程展示了許多我們在大型專案中需要的概念。
目標
雖然使用Javascript和Ajax可以實現上述功能,但是在我們的應用中,Angular可以使我們處理更容易。
文檔結構
HTML頁面
這一部分比較簡單。我們使用Bootstrap和Font Awesome。打開你的index.html文件,然後我們利用導覽欄,加入一個簡單佈局。
<!-- index.html --> <!DOCTYPE html> <html> <head> <!-- SCROLLS --> <!-- load bootstrap and fontawesome via CDN --> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" /> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.0/css/font-awesome.css" /> <!-- SPELLS --> <!-- load angular via CDN --> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.8/angular.min.js"></script> <script src="script.js"></script> </head> <body> <!-- HEADER AND NAVBAR --> <header> <nav class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <a class="navbar-brand" href="/">Angular Routing Example</a> </div> <ul class="nav navbar-nav navbar-right"> <li><a href="#"><i class="fa fa-home"></i> Home</a></li> <li><a href="#about"><i class="fa fa-shield"></i> About</a></li> <li><a href="#contact"><i class="fa fa-comment"></i> Contact</a></li> </ul> </div> </nav> </header> <!-- MAIN CONTENT AND INJECTED VIEWS --> <div id="main"> <!-- angular templating --> <!-- this is where content will be injected --> </div> <!-- FOOTER --> <footer class="text-center"> View the tutorial on <a href="http://scotch.io/tutorials/angular-routing-and-templating-tutorial">Scotch.io</a> </footer> </body> </html>
在頁面超連結中,我們使用"#"。我們不希望瀏覽器認為我們實際上是連結到about.html和contact.html。
Angular應用
模型與控制器
此時我們準備設定我們的應用程式。讓我們先來創建angular模型和控制器。關於模型和控制器,請查閱文件已獲得更多內容。
首先,我們需要用javascript來建立我們的模型和控制器,我們將此操作放到script.js:
// script.js // create the module and name it scotchApp var scotchApp = angular.module('scotchApp', []); // create the controller and inject Angular's $scope scotchApp.controller('mainController', function($scope) { // create a message to display in our view $scope.message = 'Everyone come and see how good I look!'; });
接下來讓我們把模型和控制器加入我們的HTML頁面中,這樣Angular可以知道如何引導我們的應用。為了測試功能有效,我們也會展示一個我們建立的變數$scope.message的值。
<!-- index.html --> <!DOCTYPE html> <!-- define angular app --> <html ng-app="scotchApp"> <head> <!-- SCROLLS --> <!-- load bootstrap and fontawesome via CDN --> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" /> <link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.0/css/font-awesome.css" /> <!-- SPELLS --> <!-- load angular via CDN --> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular.min.js"></script> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.2.10/angular-route.js"></script> <script src="script.js"></script> </head> <!-- define angular controller --> <body ng-controller="mainController"> ... <!-- MAIN CONTENT AND INJECTED VIEWS --> <div id="main"> {{ message }} <!-- angular templating --> <!-- this is where content will be injected --> </div>
在main這個div層中,我們現在可以看到我們建立的訊息。知道了我們的模型和控制器設定完畢並且Angular可以正常運行,那麼我們將要開始使用這一層來展示不同的頁面。
將頁面注入到主版面配置
ng-view 是一個用來包含當前路由(/home, /about, or /contact)的模板的angular指令, 它會獲得基於特定路由的文件並將其諸如到主佈局中(index.html ).
我們將會想div#main中的網站加入ng-view程式碼來告訴Angular將我們渲染的頁面放在哪裡.
<!-- index.html --> ... <!-- MAIN CONTENT AND INJECTED VIEWS --> <div id="main"> <!-- angular templating --> <!-- this is where content will be injected --> <div ng-view></div> </div> ...
設定路由與視圖
由於我們在創建一個單頁應用,並且不希望頁面刷新,那麼我們會用到Angular路由的能力。
讓我們來看看我們的Angular文件,並添加到我們的應用中。我們將會在Angular中使用$routeProvider來處理我們的路由。透過這種方式,Angular將會處理所有神奇的請求,透過取得一個新檔案並將其註入到我們的佈局中。
AngularJS 1.2 和路由
在1.1.6版本之後,ngRoute模型不在包含在Angular當中。你需要透過在文件開頭聲明該模型來使用它。教學已經為AngularJS1.2更新:
// script.js // create the module and name it scotchApp // also include ngRoute for all our routing needs var scotchApp = angular.module('scotchApp', ['ngRoute']); // configure our routes scotchApp.config(function($routeProvider) { $routeProvider // route for the home page .when('/', { templateUrl : 'pages/home.html', controller : 'mainController' }) // route for the about page .when('/about', { templateUrl : 'pages/about.html', controller : 'aboutController' }) // route for the contact page .when('/contact', { templateUrl : 'pages/contact.html', controller : 'contactController' }); }); // create the controller and inject Angular's $scope scotchApp.controller('mainController', function($scope) { // create a message to display in our view $scope.message = 'Everyone come and see how good I look!'; }); scotchApp.controller('aboutController', function($scope) { $scope.message = 'Look! I am an about page.'; }); scotchApp.controller('contactController', function($scope) { $scope.message = 'Contact us! JK. This is just a demo.'; });
現在,我們已經透過$routeProvider定義了我們的路由。透過設定你會發現,你可以使用指定路由、模板檔案甚至是控制器。透過這種方法,我們應用的每一部分都會使用Angular控制器和它自己的視圖。
清理URL: angular預設會將一個井號放入URL中。為了避免這種事情,我們需要使用$locationProvider來啟用 HTML History API. 它將移除掉hash並建立出漂亮的URL。我們的主頁將會拉取home.html 檔案. About 和contact 頁面將會拉取它們關聯的檔案. 現在如果我們查看我們的應用,並點擊導航,我們的內容將會照我們的意思進行變更.
要完成這個教程,我們只需要定義好將會被注入的頁面就行了. 我們也將會讓它們每一個都展示來自與他們相關的控制器的消息.
<!-- home.html --> <div class="jumbotron text-center"> <h1>Home Page</h1> <p>{{ message }}</p> </div> <!-- about.html --> <div class="jumbotron text-center"> <h1>About Page</h1> <p>{{ message }}</p> </div> <!-- contact.html --> <div class="jumbotron text-center"> <h1>Contact Page</h1> <p>{{ message }}</p> </div>
本地運行: Angular路由只會在你為其設定的環境後才會發揮作用。你要確保是使用的 http://localhost 或是某種類型的環境. 否則angular會說跨域請求支援HTTP.
Angular應用的動畫
一旦你把所有的路由都完成之後,你就能開始把玩你的站點並向其加入動畫了. 為此,你需要使用angular提供的ngAnimate 模組. 後面你就可以用CSS動畫來用動畫的方式切換視圖了.
單一頁App上的SEO
理想情況下,此技術可能會被用在有使用者登入後的應用程式中。你當然不會真的想要特定用戶私人性質的頁面被搜尋引擎索引. 例如,你不會想要你的讀者帳戶,Facebook登入的頁面或部落格CMS頁面被索引到.
如果你確實像針對你的應用程式進行SEO,那麼如何讓SEO在使用js建立頁面的應用程式/網站上起效呢? 搜尋引擎難於處理這些應用程式因為內容是由瀏覽器動態建構的,而且對爬蟲是看不見的.
讓你的應用程式對SEO友善
使得js單頁應用對SEO友好的技術需要定期做維護. 根據官方的Google 建議, 你需要創建HTML快照. 其如何運作的概述如下: