首页 > 代码库 > Sitecore Powershell 批量替换richtext 字段内容
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=http://www.mamicode.com/$html"/sitecore/content/home" | foreach {GetAllLanguageVersions($_)} if($itemsToProcess -ne $null) { $itemsToProcess | foreach {ProcessItem($_)} }
Sitecore Powershell 批量替换richtext 字段内容
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。