AngularJS提供多種模板載入

來源:互聯網
上載者:User

AngularJS提供多種模板載入方案。 最基礎的為通過預先聲明路徑的方式,通過Ajax擷取。 使用諸如gulp-html2js構建工具,將HTML模板轉化為js檔案使用。 使用script標籤引入。

一般實際情況下,開發時使用第一種方式,部署時採取第二種方式,不會採用第三種方式。本文簡要說明一下標籤引入模板。Angularjs本身支援的標籤type為text/ng-template,現在來支援另一種type:text/template。

相關的一篇博文:https://www.zybuluo.com/bornkiller/note/6023 代碼實現

從上一篇博文已經說明,$templateCache內的模板優先順序最高,所以需要使用到。angularjs本身採取將script指令化的方式來實現。

var scriptDirective = ['$templateCache', function($templateCache) {  return {    restrict: 'E',    terminal: true,    compile: function(element, attr) {      if (attr.type == 'text/ng-template') {        var templateUrl = attr.id,            text = element[0].text;        $templateCache.put(templateUrl, text);      }    }  };}];

代碼非常簡單,判定類型---寫入模板即可。封裝後完全看不到內部實現,所以才會再用個人方式實現,用以理解。

<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title>Inline Template</title>    <script type="text/template" id="love">        <h3>love is color blind</h3>        <p>why so serious about the world, behind the darkness</p>    </script>    <script src="libs/angular.min.js"></script>    <script src="libs/angular-sanitize.min.js"></script>    <script src="js/template.js"></script></head><body ng-app="template">    <article ng-controller="TemplateCtrl">        <div ng-bind-html="story"></div>    </article></body></html>
angular.module('template', ['ngSanitize'])  .run(['$document', '$templateCache', function($document, $templateCache) {    var scripts = Array.prototype.slice.call($document[0].scripts, 0);    scripts.forEach(function(script) {      if (script.type === 'text/template') {        $templateCache.put(script.id, script.innerHTML);      }    });  }])  .controller('TemplateCtrl', ['$scope', '$templateCache', '$log', function($scope, $templateCache, $log) {    $scope.story = $templateCache.get('love');  }]);

代碼非常簡單,即通過document.scripts這樣接近原始的方式來擷取對應標籤,然後將標籤內部的內容寫入$templateCache即可。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.