标签: validation polymer
我想使用标准的纸张输入错误验证
<paper-input label="Amount" value="{{amount}}" required error-message="Required OR Must be numeric ???" pattern="\d{3,}"></paper-input>
如果输入为空,我想要错误消息&#39;必需!&#39;。 如果输入不是数字,我想要错误消息&#39;必须是数字!&#39;。
实现这一目标的最佳方法是什么?