我一直在試圖在StackOverflow上爲我的問題找到答案,但似乎沒有解決它的問題。Angularjs ng模式對我來說不起作用
以下是我有:
<label>Portal Code</label>
<input type="text" name="portalcode" class="form-control" ng-model="dropoff.tfWeb" id="tfWeb" maxlength="8" ng-pattern="/^[a-zA-Z0-9]+$/" ng-disabled="report != null">
<pre>Errors: {{portalcode.value.$error}}</pre>
我想添加一個ng-pattern
指令,確保只有字母數字可以輸入到輸入。我試過不使用雙引號,我曾嘗試使用\w
縮寫字母作爲字母數字。我試過用*
而不是+
。我現在處於虧損狀態。不管我已經改變它,但是,我的{{portalcode.value.$error}}
不打印出錯誤。任何幫助,將不勝感激。
那麼'{{portalcode。$ error}}''怎麼樣? –
這沒有用,目前結果相同。 – lmcphers