0
我有輸入文本框輸入用戶名。我想檢查用戶名可用性,並在下面的代碼中顯示錯誤/成功消息,如用戶名驗證。什麼是最好的方式來做到這一點?AngularJS:如何檢查用戶名可用性?
<div class="form-group col-md-8">
<p>User Name*:</p>
<input type="text" name="uname" class="form-control" ng-model="uname" ng-model-options="{ debounce: 800 }" ng-change="check(uname)" required />
<span style="color:red" ng-show="form.uname.$dirty && form.uname.$invalid">
<span ng-show="form.uname.$error.required">User Name is Required</span>
</span>
</div>