码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS如何编译和呈现页面

时间:2015-11-18 19:22:14      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

 

AngularJS如何编译和呈现页面?

页面加载,首先加载静态DOM,AngularJS随即加载,并寻找在页面的ng-app,然后开始编译所有moudlue内的所有service, controller,directive等,然后搜寻dom中的directive,并创建HTML模板,模板就有了自己的scope,scope中的数据显示到view上,最终呈现页面。而谈到编译,使用了AngularJS的一个service,叫做$compile。

 

var app = angular.module(‘myApp‘,[]);

app.directive(‘contentItem‘, function($compile){
    var imageTemplate = ‘...href="{{rootDirectory}}{{content.data}}"...‘;
    var videoTemplate = ‘..ng-src="{{content.data}}"...‘;
    var noteTemplate = ‘...{{content.title}}...‘;
    
    var getTemplate = function(contentType){
        var template = ‘‘;
        
        switch(contentType){
            case ‘image‘:
                template = imageTemplate;
                break;
            case ‘video‘:
                template = videoTemplate;
                break;
            case ‘notes‘:
                template = noteTemplate;
                break;
        }
        
        return template;
    }
    
    
    var linker = function($scope, element, attrs){
        $scope.rootDirectory = ‘images/‘;
        element.html(getTemplate($scope.content.content_type)).show();
        $complie(element.contents())($scope);
    }
    
    return {
        restrict: "E",
        replace: true, //表示这里创建动态创建的html模板会覆盖页面中原先静态的html
        link: linker,
        scope: {
            content: ‘=‘
        }
    };
});

 

以上,最关键的是$complie(element.contents())($scope);当我们在页面中使用<content-item></content-item>的时候,AngularJS的$complie服务动态编译创建HTML模板,并把当前的$scope赋值给该HTML模板,这样就把$scope的数据显示出来了。

 

AngularJS如何编译和呈现页面

标签:

原文地址:http://www.cnblogs.com/darrenji/p/4975383.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!