如何从属性设置中进行验证? 我创建了一个新的文档类型,并在那里写了正则表达式,我想从 UmbracoApiController 中获取正则表达式,我有此页面的内容
IContent content = Services.ContentService.GetById(pageId);
编辑
我找到了结果:
var contentType = ApplicationContext.Current.Services.ContentTypeService.GetContentType(contentTypeId);
List<PropertyTypeCollection> propertyGroups = contentType.PropertyGroups.Select(s=>s.PropertyTypes).ToList();
答案 0 :(得分:0)
据我所知,validation属性仅用于后台,您可能必须在前端或控制器中重新进行此操作:-/