如何从文档类型中获取Validation属性?

时间:2019-02-14 07:26:21

标签: umbraco umbraco7

如何从属性设置中进行验证? 我创建了一个新的文档类型,并在那里写了正则表达式,我想从 UmbracoApiController 中获取正则表达式,我有此页面的内容

IContent content = Services.ContentService.GetById(pageId);

但是我没有找到验证对象: validation regex

编辑

我找到了结果:

var contentType = ApplicationContext.Current.Services.ContentTypeService.GetContentType(contentTypeId);
List<PropertyTypeCollection> propertyGroups = contentType.PropertyGroups.Select(s=>s.PropertyTypes).ToList();

enter image description here

1 个答案:

答案 0 :(得分:0)

据我所知,validation属性仅用于后台,您可能必须在前端或控制器中重新进行此操作:-/