AngularJs資料遞迴呈現的實現的幾種方式

來源:互聯網
上載者:User

在實踐中,常常會有資料結構一致但深度不確定的資料。而通常情況下,對資料的處理會用到遞迴的方式。例如網站的無限級分類的展現,分類資料結構:


var cate = [
    {
        cateId: 1,
        cateName: '前端技術',
        child: [
            {
                cateId: 4,
                cateName: 'JavaScript'
            },
            ...
        ]
    },
    {
        cate: 2,
        cateName: '後端技術',
        child:[
            {
                cateId: 3,
                cateName: 'PHP',
                child: [
                    {
                        cateId: 6,
                        cateName: 'ThinkPHP'
                    },
                    ...
                ]
            }
        ]
    }
];
用jq常常通過如下方式實現,範例程式碼如下:


/**
 * * 解析模板檔案
 * @param template  模板字串
 * @param scope     模板範圍
 * return [string]  解析過後的字串
 */
function templateParse(template, scope) {
    if(typeof template != "string") return ;
    return template.replace(/\{\w+\}/gi, function(matchs) {
        var returns = scope[matchs.replace(/(\{)|(\})/g, "")];
        return (returns + "") == "undefined"? "": returns;
    });
}
 
/**
 * 解析並插入分類
 */
$('#category').append(function(){
    var template = '<a href="{cateId}.html">{cateName}</a>';
    var ret = (function(c){
        if(!c || !c.length) return '';
        var ret = '<ul>';
        for(var i = 0, j = c.length; i < j; i++){
            ret += '<li>';
            ret += templateParse(template, c[i]);
            ret += arguments.callee(c[i].child);
            ret += '</li>';
        }
        return (ret + '</ul>');
    })(cate);
 
    return ret;
});
以上頁面可以點擊"jq實現無限級分類展示示範DEMO",查看對應結果。

angularJs中基於模板遞迴的實現

同樣的原理,可以通過組合angularJs內建的ng-include、ng-init來達到遞迴的效果,樣本模板如下:


<script id="recursion" type="text/ng-template">
    <li ng-repeat="item in cate">
        <a href="{{item.cateId}}">{{item.cateName}}</a>
        <ul ng-if="item.child.length" ng-include="'recursion'"  ng-init="cate=item.child"></ul>
    </li>
</script>
調用方式如下:


<div ng-app="demo">
    <div ng-controller="demo">
        <ul ng-include="'recursion'"></ul>
    </div>
</div>
實現效果示範DEMO,"AngularJ基於模板遞迴實現分類展示"

基於指令遞迴的實現

同樣的道理,在指令中,咱們可以這麼來幹(內容參考自angular-recursion):


angular.module('demo').directive('recursion',function($compile){
 
    function cpl(element, link){
        // Normalize the link parameter
        if(angular.isFunction(link)){
            link = { post: link };
        }
 
        // Break the recursion loop by removing the contents
        var contents = element.contents().remove();
        var compiledContents;
        return {
            pre: (link && link.pre) ? link.pre : null,
            /**
             * Compiles and re-adds the contents
             */
            post: function(scope, element){
                // Compile the contents
                if(!compiledContents){
                    compiledContents = $compile(contents);
                }
                // Re-add the compiled contents to the element
                compiledContents(scope, function(clone){
                    element.append(clone);
                });
 
                // Call the post-linking function, if any
                if(link && link.post){
                    link.post.apply(null, arguments);
                }
            }
        };
    }
   
    return {
        restrict:'A',
        scope: {recursion:'='},
        template: '<li ng-repeat="item in recursion">\
                        <a href="{{item.cateId}}.html">{{item.cateName}}</a>\
                        <ul recursion="item.child">\
                        </ul>\
                    </li>',
        compile: function(element){
 
            return cpl(element, function(scope, iElement, iAttrs, controller, transcludeFn){
                // Define your normal link function here.
                // Alternative: instead of passing a function,
                // you can also pass an object with
                // a 'pre'- and 'post'-link function.
            });
        }
    };
});
關於recursion指令

以上兩種方式實現與模板耦合的過於緊密,有沒有辦法可以像如下的方式來使用呢?(未完,等續)


<ul recursion="cate">
    <li ng-repeat="item in cate">
        <a href="{{item.cateId}}">{{item.cateName}}</a>
        <ul recursion-child='item.child'></ul>
    </li>
</ul>

相關文章

聯繫我們

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