Angular.jsディレクティブの動的テンプレートURL


169

routeProviderテンプレートを必要とするテンプレートにカスタムタグがありdirectiveます。version属性が右のテンプレートを要求範囲によって取り込まれます。

<hymn ver="before-{{ week }}-{{ day }}"></hymn>

何週何日であるかに基づいて、賛美歌の複数のバージョンがあります。ディレクティブを使用して正しい.html部分を入力することを期待していました。変数はによって読み取られていませんtemplateUrl

emanuel.directive('hymn', function() {
    var contentUrl;
    return {
        restrict: 'E',
        link: function(scope, element, attrs) {
            // concatenating the directory to the ver attr to select the correct excerpt for the day
            contentUrl = 'content/excerpts/hymn-' + attrs.ver + '.html';
        },
        // passing in contentUrl variable
        templateUrl: contentUrl
    }
});

ラベル付けされ抜粋ディレクトリ内の複数のファイルがありますがbefore-1-monday.htmlbefore-2-tuesday.html...



AngularJS 1.5+を使用している場合は、このエレガントなソリューションを確認してください: stackoverflow.com/a/41743424/1274852
hkong

回答:


184

ng-includeディレクティブを使用できます。

次のようなものを試してください:

emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           scope.getContentUrl = function() {
                return 'content/excerpts/hymn-' + attrs.ver + '.html';
           }
       },
       template: '<div ng-include="getContentUrl()"></div>'
   }
});

UPD。ver属性を監視するため

emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           scope.contentUrl = 'content/excerpts/hymn-' + attrs.ver + '.html';
           attrs.$observe("ver",function(v){
               scope.contentUrl = 'content/excerpts/hymn-' + v + '.html';
           });
       },
       template: '<div ng-include="contentUrl"></div>'
   }
});

1
その素晴らしいソリューション。複数のインスタンスを処理できるように記述する方法はありますか?現在、スコープが設定されると、新しいattrs.verを認識しません。
アレンギリアナ2014

1
verつまり、属性の変更と再レンダリングディレクティブを監視したいですか?
僧侶2014

1
明確にしていただきありがとうございます。upd。に投稿された方法でディレクティブを宣言すると、複数を使用する場合のユースケースが<hymn ...>うまく機能するはずです。あるいは、jsfilddleでプロトタイプを作成するときがきましたか?
僧侶2014

1
@AlenGiliana様、ve take a look at your site, and changed [JSFiddle](http://jsfiddle.net/JQgG5/6/). All you need is ディレクティブ宣言のスコープ:{} `- スコープ分離。また、angularの最新バージョンを使用することを強くお勧めします。<script type="text/ng-template" id="...">
-HTML

1
Angular 1.2.1を使用するつもりですか?ちなみに助けてくれてありがとう、この学習曲線はめちゃくちゃです:)
アレン・ギリアナ14

313
emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           // some ode
       },
       templateUrl: function(elem,attrs) {
           return attrs.templateUrl || 'some/path/default.html'
       }
   }
});

したがって、マークアップを介してtemplateUrlを提供できます

<hymn template-url="contentUrl"><hymn>

これで、プロパティcontentUrlに動的に生成されたパスが入力されることに注意してください。


4
いいですが... templateUrl関数からスコープ属性にアクセスできますか?templateUrlはスコープ値に依存しますが、それにアクセスできません:(
josec89

1
私はあなたが解決策を見つけてうれしいです。ディレクティブの必須部分でコントローラが設定されていない限り、親に依存するディレクティブはお勧めしません。
Andrej Kaurin 14年

11
最後に!まさに私が探していたもの!templateUrl関数からelemとattrsにアクセスできることに気づきませんでした。ありがとう!
coryvb123 2014年

7
templateUrlはディレクティブごとに1回呼び出されます。ディレクティブインスタンスの初期化ごとに呼び出されるわけではありません。注意してください!!! しかし、角度のバグかもしれません...
Lu4

2
私はまだそれをチェックしていませんが、私の最新の調査結果によると、それはおそらくそれは言及する価値がありonce per $compile phaseます。言い換えるng-repeatと、ディレクティブで使用し、特定のng-repeatアイテムコンテキストに基づいて個々のテンプレートを設定する場合、$compileフェーズは実際にng-repeat発生する前にディレクティブを1回通過するため機能しません。つまり、その意味で一度呼び出されます...
Lu4

6

@pgregoryのおかげで、インライン編集にこのディレクティブを使用して問題を解決できました

.directive("superEdit", function($compile){
    return{
        link: function(scope, element, attrs){
            var colName = attrs["superEdit"];
            alert(colName);

            scope.getContentUrl = function() {
                if (colName == 'Something') {
                    return 'app/correction/templates/lov-edit.html';
                }else {
                    return 'app/correction/templates/simple-edit.html';
                }
            }

            var template = '<div ng-include="getContentUrl()"></div>';

            var linkFn = $compile(template);
            var content = linkFn(scope);
            element.append(content);
        }
    }
})


2

私は同じ問題を抱えており、他とは少し異なる方法で解決しました。角度1.4.4を使用しています。

私の場合、CSSブートストラップパネルを作成するシェルテンプレートがあります。

<div class="class-container panel panel-info">
    <div class="panel-heading">
        <h3 class="panel-title">{{title}} </h3>
    </div>
    <div class="panel-body">
        <sp-panel-body panelbodytpl="{{panelbodytpl}}"></sp-panel-body>
    </div>
</div>

ルートに応じてパネル本体のテンプレートを入れたい。

    angular.module('MyApp')
    .directive('spPanelBody', ['$compile', function($compile){
        return {
            restrict        : 'E',
            scope : true,
            link: function (scope, element, attrs) {
                scope.data = angular.fromJson(scope.data);
                element.append($compile('<ng-include src="\'' + scope.panelbodytpl + '\'"></ng-include>')(scope));
            }
        }
    }]);

次に、ルートが次の場合に次のテンプレートを含めます#/students

<div class="students-wrapper">
    <div ng-controller="StudentsIndexController as studentCtrl" class="row">
        <div ng-repeat="student in studentCtrl.students" class="col-sm-6 col-md-4 col-lg-3">
            <sp-panel 
            title="{{student.firstName}} {{student.middleName}} {{student.lastName}}"
            panelbodytpl="{{'/student/panel-body.html'}}"
            data="{{student}}"
            ></sp-panel>
        </div>
    </div>
</div>

次のようなpanel-body.htmlテンプレート:

Date of Birth: {{data.dob * 1000 | date : 'dd MMM yyyy'}}

誰かが試してみたい場合のサンプルデータ:

var student = {
    'id'            : 1,
    'firstName'     : 'John',
    'middleName'    : '',
    'lastName'      : 'Smith',
    'dob'           : 1130799600,
    'current-class' : 5
}

0

これについてのがあります。

<!DOCTYPE html>
<html ng-app="app">

  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  </head>

  <body>
    <div class="container-fluid body-content" ng-controller="formView">
        <div class="row">
            <div class="col-md-12">
                <h4>Register Form</h4>
                <form class="form-horizontal" ng-submit="" name="f" novalidate>
                    <div ng-repeat="item in elements" class="form-group">
                        <label>{{item.Label}}</label>
                        <element type="{{item.Type}}" model="item"></element>
                    </div>
                    <input ng-show="f.$valid" type="submit" id="submit" value="Submit" class="" />
                </form>
            </div>
        </div>
    </div>
    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js"></script>
    <script src="app.js"></script>
  </body>

</html>

angular.module('app', [])
    .controller('formView', function ($scope) {
        $scope.elements = [{
            "Id":1,
            "Type":"textbox",
            "FormId":24,
            "Label":"Name",
            "PlaceHolder":"Place Holder Text",
            "Max":20,
            "Required":false,
            "Options":null,
            "SelectedOption":null
          },
          {
            "Id":2,
            "Type":"textarea",
            "FormId":24,
            "Label":"AD2",
            "PlaceHolder":"Place Holder Text",
            "Max":20,
            "Required":true,
            "Options":null,
            "SelectedOption":null
        }];
    })
    .directive('element', function () {
        return {
            restrict: 'E',
            link: function (scope, element, attrs) {
                scope.contentUrl = attrs.type + '.html';
                attrs.$observe("ver", function (v) {
                    scope.contentUrl = v + '.html';
                });
            },
            template: '<div ng-include="contentUrl"></div>'
        }
    })
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.