Sitecore Powershell 批量替换richtext 字段内容
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sitecore Powershell 批量替换richtext 字段内容相关的知识,希望对你有一定的参考价值。
Q:网站有上千个页面,这上千个页面中都有一个相同的broken link,需要替换成正确的链接。如何才能简单,快速有效的完成这个动作呢
A:首先我们肯定会考虑这个动作的实现方式,
1、简单笨重的人工一个一个页面修改
2、通过写程序扩展实现
3、sitecore powershell
方一肯定是排除不可取的,方法二其实也是可以实现的,但是我觉得我想考虑一下方法三,之前我从来没有接触过,通过这个需求还学习一下powershell 语法。
最终实现的代码如下:
function GetAllLanguageVersions($item) { Get-Item $item.ProviderPath -Language "zh-CN" } function ProcessItem($item) { $html=$item.Fields["MyField"].Value -replace "http://www.baidu.com","http://www.cnblogs.com/wem520" $item.Editing.BeginEdit() $item.Fields["MyField"].Value=$html $item.Editing.EndEdit() } $itemsToProcess = Get-ChildItem -Path "/sitecore/content/home" | foreach {GetAllLanguageVersions($_)} if($itemsToProcess -ne $null) { $itemsToProcess | foreach {ProcessItem($_)} }
以上是关于Sitecore Powershell 批量替换richtext 字段内容的主要内容,如果未能解决你的问题,请参考以下文章
xml 简单的配置文件更改,以确保Sitecore Urls的格式很好,用连字符( - )替换空格(%20)。请注意,这也包括