有網上在Angularjs .directives
鏈接功能的許多例子來操縱與在angularjs 1.5組件設置有效期
require: 'ngModel',
link: function(scope,elem, attr,ctrl){
ctrl.$setValidity('element-name', false);
// and setting has-error
elem.parent().hasClass('has-error');
的DOM上Angularjs 1.5 ES5 .component
是如何做這方面的工作?
我看到你可以注入$element,$attrs
,雖然沒有人使用它們的例子或者如何注入ngModel
作爲ctrl來用於設置有效性。我錯過了一些超級簡單的東西,每個人都知道如何做到這一點,或者沒有人嘗試過在組件中使用這些東西。
This StackOverflow post should should help you http://stackoverflow.com/questions/36721551/how-to-set-validity-in-directive-angularjs –
@Pramod_Para我說不是'.directive'我正在努力完成這在一個組件中。或者這只是某個組件無法完成的事情。 – mjwrazor
你的意思是不使用任何角度分量? –