所謂的延遲載入通常是:直到使用者互動時才載入。如何實現延遲載入呢?
要搞清楚三個面向:
1、html元素的哪個屬性需要延遲載入?
2、需要對資料來源的哪個欄位進行延遲載入?
3.透過什麼事件觸發延遲載入?
自訂的Directive的頁面表現大致是這樣:
<ul> <li ng-repeat="cust in customers" delay-bind="{{::cust.street}}" attribute="title" trigger="mouseenter"> <a delay-bind="{{::cust.url}}" attribute="href" trigger="mouseenter"> {{cust.name}} </a> </li> </ul> <div>Total Cusotmers: {{::customers.length}}</div>
以上,
● delay-bind表示要從資料來源取出的某個欄位值
● attribute表是html元素屬性,對此屬性延遲賦值
● trigger表示透過那個事件來觸發延遲載入
Directive程式碼大致如下:
//interpolate的存在允许one-time一次性绑定 (function(){ var delayBindWithCompile = ['$interpolate', function($interpolate){ var compile = fucntion(tElem, tAttrs){ //delay-bind="{{::cust.street}}" //这里返回的是一个函数,也就相当于针对street属性的编译开始,相当于把编译的功能先缓存在这里 var interpolateFunc = $interpolate(tAttrs.delayBind); //重新设置delayBind的属性值,这时候DOM还没有加载呢 tAttrs.$set('delayBind', null); //相当于清除属性值 return { pre: function(scope, elem, attrs){ }, post: function(scope, elem, attrs){ //trigger="mouseenter" elem.on(attrs.trigger, function(event){ //attribute="title" 这里title是表示真正要延迟更新的属性 var attr = atts.attribute, val = interpolateFunc(scope); //编译真正执行 if(attr && !elem.attr(attr)){ elem.attr(attr, val); } }); } } }; return { restrict: 'A', compile: compile } }]; angular.module('directivesModule') .directive('delayBind', delayBindWithCompile); }());
以上,compile方法中用到了$interpolate服務,$interpolate這個服務首先可以透過$interpolate(tAttrs.delayBind)把資料來源某個欄位的屬性值先編譯快取起來,在post-link,也就是這裡的post函式中,當觸發造成延遲載入的事件,再讓$interpolate服務開始編譯把值賦值給html元素的某個屬性。
以上所述是針對AngularJS中的Directive實現延遲載入的相關內容,希望對大家有幫助。