我使用controllerAs,在ng模型中對文本進行stroring並將其保存在數據庫中,並且遇到一個問題,因爲我無法查看ng-model
length
。如何顯示ng-model="seeMore.comment"
長度?使用控制器顯示ng模型長度as
<textarea class="form-control" id="text-area-comment" name="comment" ng-model="seeMore.comment" ng-minLength="10" required></textarea>
<ul ng-show="(!AddCommentForm.comment.$pristine && AddCommentForm.comment.$error.minlength)" class="help-block">
<li>{{seeMore.comment.length}} to go.. </li>
</ul>
請詳細說明您的查詢 –
我會顯示有多少個字符在文本區域中相加,我覺得很好的解決方案是採用NG-模型長度 –