我想创建一个生成运行号码的字段。每次创建新项目时都会自动生成此编号,并且该编号必须是唯一的。
有关如何实施这方面的任何示例?我不想使用Sitecore项目ID。
答案 0 :(得分:1)
您可以实施自定义令牌,只需使用您的字段即可。我认为这将是解决您问题的最简洁的解决方案。您可以添加自定义算法以确保ID是唯一的,或者您可以使用Guid.NewGuid()
。您可以在此blog post中查看如何创建自定义令牌。
答案 1 :(得分:0)
好的。我想出了一个受nsgocev博客帖子启发的解决方案。我们的ID需要存储在某个地方,所以我在/ sitecore / content /中创建了一个项目,它将最后一个ID存储为字符串。将开头设置为" AA000000"。我们的ID有一个前缀" AA"和6位数。
这是重要的逻辑:
Namespace Tokens
Public Class GeneratedArticleId
Inherits ExpandInitialFieldValueProcessor
Public Overrides Sub Process(ByVal args As ExpandInitialFieldValueArgs)
If args.SourceField.Value.Contains("$articleid") Then
Dim database = Sitecore.Client.ContentDatabase
Dim counter = database.GetItem(New ID("Our Item"))
If counter Is Nothing Then
args.Result = ""
Exit Sub
End If
Dim idfield = AppendToIdValue(counter("ID"))
Using New SecurityDisabler()
counter.Editing.BeginEdit()
counter.Fields("ID").Value = idfield
counter.Editing.EndEdit()
End Using
If args.TargetItem IsNot Nothing Then
args.Result = args.Result.Replace("$articleid", idfield)
End If
End If
End Sub
'Extracts the digits and adds one
Private Shared Function AppendToIdValue(ByVal id As String)
Dim letterprefix = Left(id, 2)
Dim integervalue = CInt(id.Replace(letterprefix, ""))
integervalue += 1
Return letterprefix & integervalue.ToString("000000")
End Function
End Class
End Namespace
我们还需要将我们的类添加到Web配置文件中。补丁给出的课程:
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<pipelines>
<expandInitialFieldValue help="Processors should derive from Sitecore.Pipelines.ExpandInitialFieldValue.ExpandInitialFieldValueProcessor">
<processor patch:after="*[@type='Sitecore.Pipelines.ExpandInitialFieldValue.ReplaceVariables, Sitecore.Kernel']" type="OurLibrary.Tokens.GeneratedArticleId, OurLibrary"/>
</expandInitialFieldValue>
</pipelines>
</sitecore>
</configuration>
现在,当我们使用令牌&#34; $ articleid&#34;创建新项目时,ID为AA000001。下一个将是AA000002,依此类推。
感谢@nsgocev的资源和答案。