Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 jhipster 的 .jdl 文件修改我现有的实体。
现在,我对该字段的要求是只有 1 到 10 之间的数字。
我知道这可以在前置文件或 ts 文件中轻松处理。
但是,JHipster 有什么办法可以做到吗?
例如,我们有一个字段的 maxlength 和 minlength 属性:
entity test { label String required minlength(3); }
先感谢您。
谢谢...我想这个问题可以使用可以添加自定义正则表达式的模式来解决。
问题解决了