在3.5.3【Action的类型】一文中有涉及到“ServerAction之校验”部分,本文介绍一个特殊的写法,当内置函数和表达式不够用的时候,怎么扩展。还是拿PetShopProxyAction举例,修改如下:
package pro.shushi.pamirs.demo.core.action;
……引依赖类
@Model.model(PetShopProxy.MODEL_MODEL)
@Component
public class PetShopProxyAction extends DataStatusBehavior<PetShopProxy> {
……其他代码
// @Validation(ruleWithTips = {
// @Validation.Rule(value = "!IS_BLANK(data.code)", error = "编码为必填项"),
// @Validation.Rule(value = "LEN(data.shopName) < 128", error = "名称过长,不能超过128位"),
// })
@Validation(check = "checkName")
@Action(displayName = "启用")
@Action.Advanced(rule="activeRecord.code !== undefined && !IS_BLANK(activeRecord.code)")
public PetShopProxy dataStatusEnable(PetShopProxy data){
data = super.dataStatusEnable(data);
data.updateById();
return data;
}
@Function
public Boolean checkName(PetShopProxy data) {
String field = "name";
String name = data.getShopName();
boolean success = true;
if (StringUtils.isBlank(name)) {
PamirsSession.getMessageHub()
.msg(Message.init()
.setLevel(InformationLevelEnum.ERROR)
.setField(field)
.setMessage("名称为必填项"));
success = false;
}
if (name.length() > 128) {
PamirsSession.getMessageHub()
.msg(Message.init()
.setLevel(InformationLevelEnum.ERROR)
.setField(field)
.setMessage("名称过长,不能超过128位"));
success = false;
}
return success;
}
……其他代码
}
注:
-
check属性指定了校验函数名称,命名空间必须与服务器动作一致。
-
校验函数的入参必须与服务器动作一致
-
使用PamirsSession#getMessageHub方法可通知前端错误的属性及需要展示的提示信息,允许多个。
Oinone社区 作者:史, 昂原创文章,如若转载,请注明出处:https://doc.oinone.top/oio4/9288.html
访问Oinone官网:https://www.oinone.top获取数式Oinone低代码应用平台体验