gpt4 book ai didi

xml - 创建不带命名空间的 XML 元素

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:37 25 4
gpt4 key购买 nike

我想用文本创建元素 OutputPath。这就是我想要的:

  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath>Text</OutputPath>
</PropertyGroup>

这就是我得到的:

  <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<OutputPath xmlns="">Text</OutputPath>
</PropertyGroup>

一切都很好,但是当我创建元素时,某些东西不断向它添加 xmlns=""

然后我收到错误:error MSB4097: The element below element may not have a custom XML namespace.

    // Load the Project (.innoproj or .nsisproj file)
xmlDoc := nil;
currentConfigurationNode := nil;
xmlDoc := CreateOleObject('Microsoft.XMLDOM') as IXMLDOMDocument2;
xmlDoc.async := False;
//xmlDoc.setProperty('SelectionNamespaces', 'xmlns="http://schemas.microsoft.com/developer/msbuild/2003"'); << this line does nothing
xmlDoc.load(projPath);
if xmlDoc.parseError.errorCode <> 0 then
begin
xmlDoc := nil;
currentConfigurationNode := nil;
raise Exception.Create('Cannot not load Project file! Details: ' + xmlDoc.parseError.reason);
end;

// Find appropriate element and get it's value
{ <?xml><Project><PropertyGroup Condition=" '$(Configuration)' == 'XXX' "> }
propertyGroup := xmlDoc.selectNodes('/Project/PropertyGroup');
for I := 0 to propertyGroup.length - 1 do
begin
node := propertyGroup[I];
if (node.attributes.length > 0) then
begin
Temp := String(node.attributes.getNamedItem('Condition').Text);
if(Temp.Contains('$(Configuration)') and Temp.Contains(projConfiguration)) then
begin
// Do all operations on this node
currentConfigurationNode := propertyGroup[I];
break;
end;
end;
end;

Result := True;
except
on Exception do
Result := False;
end;

创建(新)节点:

  // This is correct Node for selected Configuration
node := currentConfigurationNode.selectSingleNode(PPED^.XmlTag);
if(node <> nil) then
if(PPED^.Value <> '') then
begin
elementNode := currentConfigurationNode.appendChild(xmlDoc.createElement(PPED^.XmlTag));
elementNode.text := PutSymbol(PPED^.Strip, PPED^.Value); << Something adds xmls="" to this element
end;

最佳答案

创建元素时传入根元素的命名空间:

xmlDoc.createElement(PPED^.XmlTag, rootElementNamespace);

我不知道根元素的 namespace 是什么,但您可能知道。该文件也有信息,所以我希望你可以写:

XmlDoc.DocumentElement.NamespaceURI

用于根元素命名空间。

我猜你的问题应该被认为是一个骗局:How to prevent blank xmlns attributes in output from .NET's XmlDocument?但我没有这样关闭它,因为 Delphi 标签中的模组往往不喜欢关闭来自非 Delphi 标签的问题。

关于xml - 创建不带命名空间的 XML 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30945049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com