5

我正在研究 SDL Tridion 2011 SP1 中的 Tom.Net API。我正在尝试检索 XhtmlField 的“源”部分。

我的来源看起来像这样。

<Content>
    <text>
        <p xmlns="http://www.w3.org/1999/xhtml">hello all<strong>
            <a id="ID1" href="#" name="ZZZ">Name</a>
        </strong></p>
    </text>
</Content>

我想获取这个“文本”字段的来源并处理带有 name 的标签a

我试过以下:

ItemFields content = new ItemFields(sourcecomp.Content, sourcecomp.Schema);
XhtmlField textValuesss = (XhtmlField)content["text"]; 

XmlElement  textxmlelement = textValuesss.Definition.ExtensionXml;

Response.Write("<BR>" + "count:" + textxmlelement.ChildNodes.Count);
for (int i = 0; i < textxmlelement.ChildNodes.Count; i++)
{
    Response.Write("<BR>" + "nodes" + textxmlelement.ChildNodes[i].Name);
}

//get all the nodes with the name a
XmlNodeList nodeswithnameA = textxmlelement.GetElementsByTagName("a");
foreach (XmlNode eachNode in nodeswithnameA)
{
    //get the value at the attribute "id" of node "a"
    string value = eachNode.Attributes["id"].Value;
    Response.Write("<BR>" + "idValue" + value);
}

我没有得到任何输出。此外,我得到的计数为零。

我得到的输出:

计数:0

尽管我在该领域有一些子标签,但我不明白为什么 0 会以Count.

任何人都可以建议所需的修改。

谢谢你。

4

2 回答 2

8

ItemField.Definition 允许访问字段的架构定义,而不是字段内容,因此您不应使用 ExtensionXml 属性来访问内容(这就是它为空的原因)。此属性用于在架构定义中存储扩展数据。

要使用包含 XML/XHTML 内容的字段,我只需访问组件的 Content 属性,因为这已经是一个 XmlElement。您需要注意内容的命名空间,因此在查询此 XmlElement 时使用 XmlNamespaceManager。例如,以下将为您提供对名为“文本”的字段的引用:

XmlNameTable nameTable = new NameTable();
XmlNamespaceManager nsManager = new XmlNamespaceManager(nameTable);
nsManager.AddNamespace("custom", sourceComp.Content.NamespaceURI);
XmlElement fieldValue = (XmlElement)sourceComp.Content.SelectSingleNode(
                                "/custom:Content/custom:text", nsManager);
于 2012-05-10T10:16:33.890 回答
2
textValuesss.Definition.ExtensionXml

这是错误的属性(定义导致 Schema 字段定义,而 ExtensionXml 用于由扩展编写的自定义 XML 数据)。

您想改用 textValuesss.Value 并将其加载为 XML。之后,您可能应该将 SelectSingleNode 与包含 XHTML 名称空间的特定 XPath 查询一起使用。或者使用 Linq to XML 来查找元素。

于 2012-05-10T10:01:54.007 回答