*這不是一個問題,我分享的解決方案*角訪問來自控制器形成
我需要從我的控制器訪問我的形式有效的一些輸入accroding它的值(例如,ISO代碼應該在我的ISO代碼列表中...)
問題不在於如何有效或檢查表單或輸入,而是如何訪問表單屬性($ valid/$ error等),而不是輸入值(使用ng-model)
<form autocomplete="off" name="formLocalisation">
<input type="text" placeholder='countrycode'
class="form-control input-md"
ng-minlength="2" ng-maxlength="3" name="countrycode"
ng-change="validLocalisationField('countrycode')"
ng-model="countrycode" />
<input type="text" placeholder='country name'
class="form-control input-md"
ng-minlength="2" ng-maxlength="3" name="countryname"
ng-change="validLocalisationField('countryname')"
ng-model="countryname" />
</form>
那麼什麼是你的問題? – ThisIsMarkSantiago
你爲什麼認爲你的控制器無法訪問表單? – Aakash
我不知道,你想要什麼。 –