3
名爲「User」的模板有一個名爲「Location」的字段,它是另一個項目的ID;在Powershell中,我使用Show-ListView返回字段列表,但位置顯示的是原始ID,而我更願意顯示相關位置的名稱。Sitecore Powershell Reports/ListView:從查詢返回的ID中檢索項目
我試圖檢索這些信息,但我不確定在Powershell查詢中哪些語法可用。我的嘗試如下:
Get-Item master: -Query "/sitecore/content/sites/data/people//*[@@templatename='Person']" |
Show-ListView -property "First Name",
@{Label="Surname"; Expression={$_."Surname"}},
@{Label="Location"; Expression={[Sitecore.Context.Database.GetItem]::FromId($_."Location").Title}}
......它什麼都不產生。
$_."Location"
是項目的ID;有沒有辦法檢索它的字段?
謝謝非常,這是有啓發性的。 –