我正在开发一个 CRUD 应用程序。我使用 Propel 作为 ORM,并在 schema.xml 中添加了验证规则。但这,不能正常工作。例如,我发送一个包含用户姓氏的字符串,验证器是:
<rule name='minLength' value='4'/>
<rule name='maxLength' value='30'/>
<rule name='notMatch' value='/^\s+$/' />
<!-- the name can be only chars and spaces -->
<rule name='match' value='/[^A-Za-z ]$/'/>
发送的用户姓氏是:“Martinez D Elia”。第四条规则有效失败。任何的想法 ?。