本文介绍了Sitecore快速查询出现解析异常的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
为什么下面的代码会出现此错误ParseException: End of string expected at position 4.
代码如下:错误在第3行。
var db = Sitecore.Configuration.Factory.GetDatabase("web");
string query = @"fast:/sitecore/content/foodservice/home/Products/3492-5326/3518-7";
Item item = db.SelectSingleItem(query);
return item;
我们是否可以对SelectSingleItem()
使用快速查询?我试图避免get folder contents and loop through each item until I find the target solution.
建议?
推荐答案
这是使用快速查询和SelectSingleItem()时的错误。该问题已在Sitecore CMS 6.3.0 Rev.100716版本中修复。请参见Release Notes。由于我们使用的是6.2,我不得不重写我的方法以使用Sitecore查询而不是快速查询。
这篇关于Sitecore快速查询出现解析异常的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!