動的テンプレートを使用してディレクティブを作成するにはどうすればよいですか?
'use strict';
app.directive('ngFormField', function($compile) {
return {
transclude: true,
scope: {
label: '@'
},
template: '<label for="user_email">{{label}}</label>',
// append
replace: true,
// attribute restriction
restrict: 'E',
// linking method
link: function($scope, element, attrs) {
switch (attrs['type']) {
case "text":
// append input field to "template"
case "select":
// append select dropdown to "template"
}
}
}
});
<ng-form-field label="First Name" type="text"></ng-form-field>
これは私が今持っているものであり、ラベルを正しく表示しています。ただし、テンプレートに追加のHTMLを追加する方法についてはわかりません。または、2つのテンプレートを1に結合します。
同様のニーズがあった。 $compile
は仕事をします。 (これがそれを行うための「THE」方法であるかどうかは完全にはわかりませんが、まだ角度を通して私の方法を働いています)
http://jsbin.com/ebuhuv/7/edit -探索テスト。
(私の例によれば)注意すべきことの1つは、私の要件の1つは、保存をクリックするとテンプレートがtype
属性に基づいて変更され、テンプレートが非常に異なることでした。ただし、データバインディングを取得します。新しいテンプレートが必要な場合は、再コンパイルする必要があります。
同様のことを実現するために$ templateCacheを使用しました。ディレクティブのtemplateUrlを使用して参照する単一のhtmlファイルに複数のngテンプレートを配置します。これにより、htmlがテンプレートキャッシュで使用できるようになります。次に、IDで選択して、必要なngテンプレートを取得できます。
template.html:
<script type="text/ng-template" id=“foo”>
foo
</script>
<script type="text/ng-template" id=“bar”>
bar
</script>
指令:
myapp.directive(‘foobardirective’, ['$compile', '$templateCache', function ($compile, $templateCache) {
var getTemplate = function(data) {
// use data to determine which template to use
var templateid = 'foo';
var template = $templateCache.get(templateid);
return template;
}
return {
templateUrl: 'views/partials/template.html',
scope: {data: '='},
restrict: 'E',
link: function(scope, element) {
var template = getTemplate(scope.data);
element.html(template);
$compile(element.contents())(scope);
}
};
}]);
' ng-switch 'ディレクティブを使用して、スイッチをテンプレートに移動する必要があります。
module.directive('testForm', function() {
return {
restrict: 'E',
controllerAs: 'form',
controller: function ($scope) {
console.log("Form controller initialization");
var self = this;
this.fields = {};
this.addField = function(field) {
console.log("New field: ", field);
self.fields[field.name] = field;
};
}
}
});
module.directive('formField', function () {
return {
require: "^testForm",
template:
'<div ng-switch="field.fieldType">' +
' <span>{{title}}:</span>' +
' <input' +
' ng-switch-when="text"' +
' name="{{field.name}}"' +
' type="text"' +
' ng-model="field.value"' +
' />' +
' <select' +
' ng-switch-when="select"' +
' name="{{field.name}}"' +
' ng-model="field.value"' +
' ng-options="option for option in options">' +
' <option value=""></option>' +
' </select>' +
'</div>',
restrict: 'E',
replace: true,
scope: {
fieldType: "@",
title: "@",
name: "@",
value: "@",
options: "=",
},
link: function($scope, $element, $attrs, form) {
$scope.field = $scope;
form.addField($scope);
}
};
});
次のように使用できます。
<test-form>
<div>
User '{{!form.fields.email.value}}' will be a {{!form.fields.role.value}}
</div>
<form-field title="Email" name="email" field-type="text" value="[email protected]"></form-field>
<form-field title="Role" name="role" field-type="select" options="['Cook', 'Eater']"></form-field>
<form-field title="Sex" name="sex" field-type="select" options="['Awesome', 'So-so', 'awful']"></form-field>
</test-form>
動的テンプレートでAngularJsディレクティブを使用したい場合は、それらの答えを使用できますが、ここにはprofessionalおよびlegal構文があります単一の値だけでなく、templateUrlを使用できます。値をurlとして返す関数として使用できます。その関数には、使用できる引数があります。
1つの方法は、ディレクティブでテンプレート関数を使用することです。
...
template: function(tElem, tAttrs){
return '<div ng-include="' + tAttrs.template + '" />';
}
...
私はこの問題に対処することができました。以下はリンクです:
https://github.com/nakosung/ng-dynamic-template-example
特定のファイルは次のとおりです。
https://github.com/nakosung/ng-dynamic-template-example/blob/master/src/main.coffee
dynamicTemplate
ディレクティブは、スコープ内で渡される動的テンプレートをホストし、ホストされる要素は他のネイティブangular=要素と同様に機能します。
scope.template = '< div ng-controller="SomeUberCtrl">rocks< /div>'
私は同じ状況にあり、私の完全な解決策が投稿されました ここ
基本的に、この方法でディレクティブにテンプレートをロードします
var tpl = '' +
<div ng-if="maxLength"
ng-include="\'length.tpl.html\'">
</div>' +
'<div ng-if="required"
ng-include="\'required.tpl.html\'">
</div>';
maxLength
とrequired
の値に応じて、2つのテンプレートの1つを動的にロードできます。必要に応じて、一度に1つだけが表示されます。
私はそれが役立つと思います。