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

Angularjs[26] - 自定义指令(2)(templateUrl)

时间:2017-01-31 21:40:56      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:logs   lan   images   htm   alt   服务器   hello   ict   dir   

  • templateUrl: 加载模板所要使用的 URL。
  • 可以加载当前模板内对应的 text/ng-template script id。
  • 在使用 chrome 浏览器时,“同源策略”会阻止 chorme 从 file:// 中加载模板,并显示一个“ Access-Control-Allow-Origin ”不允许源为 null,可以把项目放在服务器上加载,或者给 chorme 设置一个标志位,命令为:chorme-allow-file-access-from-files。
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <div ng-app="myApp">

        <script type="text/ng-template" id="customTags2">
            <div>
                hello {{name}}
            </div>
        </script>

        <div ng-controller="firstController">
            <custom-tags></custom-tags>
            <custom-tags2></custom-tags2>
        </div>

    </div>

<script type="text/javascript" src="../../vendor/angular/angularjs.js"></script>
<script type="text/javascript" src="app/index.js"></script>
</body>
</html>
 <div>{{name}}</div>
var myApp = angular.module(‘myApp‘,[])
.directive(‘customTags‘,function () {
    return{
        restrict: ‘ECAM‘,
        templateUrl:‘tmp/other.html‘,
        replace: true
    }
})
.directive(‘customTags2‘,function () {
    return{
        restrict: ‘ECAM‘,
        templateUrl:‘customTags2‘,
        replace: true
    }
})
.controller(‘firstController‘,[‘$scope‘,function ($scope) {
    $scope.name = ‘Alrale‘;
}]);

技术分享

 

Angularjs[26] - 自定义指令(2)(templateUrl)

标签:logs   lan   images   htm   alt   服务器   hello   ict   dir   

原文地址:http://www.cnblogs.com/bky-1083/p/6359086.html

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