0
是否可以將所有屬性從組件實例傳遞到組件模板中的某個元素?在AngularJS組件中傳遞所有屬性
例如,假設我有一個非常簡單的組件:
angular.module('...').component('customInput', {
templateUrl: '<input ng-minlength="8">',
controller: function() { },
bindings: { }
});
有什麼辦法,我可以做這樣的事情:
<custom-input arbitrary-directive></custom-input>
,並取回
<input ng-min-length="8" arbitrary-directive></input>
沒有指定arbitraryDirective
作爲綁定具體?我只想將所有未指定的屬性傳遞給內部元素。