テンプレートに別のディレクティブがあるディレクティブがあります。
<nv-select ng-model="from" ng-options="item.name as item for item in from"></nv-select>
ng-options
ここで、子ディレクティブの に式を渡そうとします。残念ながら、それは常に私に次のエラーを与えます
Error: Syntax Error: Token 'as' is an unexpected token at column ...
ng-options
式を子ディレクティブのに入れるとselect
、問題なく動作します。私のnv-select
ディレクティブは次のようになります。
function () {
return {
restrict: 'E', // restrict to elements
replace: true,
transclude: true,
scope: {
ngModel: "=",
ngOptions: "&",
placeholder: '@'
},
template: [
'<div class="nv-select">',
'<select ng-model="ngModel" ng-options="ngOptions" ng-transclude></select>',
'<span class="icon suffix-icon-down">{{ text || placeholder }}</span>',
'</div>'
].join(''),
link: function (scope, elem, attr) {
var select = elem.find('select'),
copyValues = function (e) {
if (e.options) {
scope.text = angular.element(e.options[e.selectedIndex]).text();
}
};
copyValues(elem[0]);
elem.bind('click', function (event) {
elem.toggleClass('active');
});
select.bind('change', function (event) {
scope.$apply(function () {
copyValues(event.target);
});
});
}
};
};
nv-select
<select>
は基本的に、カスタム スタイルを有効にするための単なるラッパーです。
式を渡すときに特別な考慮が必要ですか? 私は何を間違っていますか?