我正在使用fcsaNumber指令來檢查輸入到輸入框中的數字的有效性。我得到了這個工作,但是我檢查的值是動態的,這意味着它可以根據選擇的選項而改變。看來這個指令只會初始化一次。當選項發生變化時,我需要做些什麼才能重新初始化?如何重新初始化Angular指令?
//this works fine
<input name="Employees" type="text" ng-model="Input.Employees" fcsa-number="{min: 1}" required="">
//this only inits once, so its not dynamic
<input name="Employees" type="text" ng-model="Input.Employees" fcsa-number="{{getMin()}}" required="">