我目前正在使用以下代码在 Tridion 中进行搜索。它根据输入获取项目(组件和页面)。
问题:在富文本字段中,我们有设计、源代码和预览选项卡。以下代码仅搜索“设计”选项卡中存在的内容。在执行搜索时,我还需要考虑源选项卡内容。
CoreServiceSession client = new CoreServiceSession();
SessionAwareCoreServiceClient csClient = client.GetClient();
var find = new SearchQueryData
{
Description = "Universe"
ItemTypes = new ItemType[] { ItemType.Page, ItemType.Component }
);
IdentifiableObjectData[] foundItems = csClient.GetSearchResults(find);