如何对文本应用最大字数验证-angular
How to apply max word count validation on text-angular
以下代码用于字符验证。现在我想要相同类型的最大单词验证。
<text-angular ta-toolbar="[['undo','redo'], ['bold','italics','underline'], ['justifyLeft','justifyCenter','justifyRight','justifyFull'], ['wordcount']]" ng-model="description" name = "desc" ta-max-text="20" ></text-angular><br />
<span ng-show="form.desc.$error.taMaxText">Input is too long!</span>
换句话说,我想要一个替代 "ta-max-text" 的最大字数。相同的任何内置或自定义验证器?
正如您对 "taMaxText" 所做的一样,您必须构建自己的指令或只使用 one someone already made...
以下代码用于字符验证。现在我想要相同类型的最大单词验证。
<text-angular ta-toolbar="[['undo','redo'], ['bold','italics','underline'], ['justifyLeft','justifyCenter','justifyRight','justifyFull'], ['wordcount']]" ng-model="description" name = "desc" ta-max-text="20" ></text-angular><br />
<span ng-show="form.desc.$error.taMaxText">Input is too long!</span>
换句话说,我想要一个替代 "ta-max-text" 的最大字数。相同的任何内置或自定义验证器?
正如您对 "taMaxText" 所做的一样,您必须构建自己的指令或只使用 one someone already made...