如何从属性设置中获取验证?我创建了一个新的文档类型,我在那里写了正则表达式,我想从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();
据我所知,验证属性仅用于后台,您可能需要在前端或控制器中重新执行: - /