我需要为节点添加前缀,但在接口中定义的 IXMLNodeList 中也添加了 NameSpace,并且需要在所有节点上添加前缀
if Length(cds_Partes.FieldByName('Nota').AsString) > 0 then
Nota.Add( cds_Partes.FieldByName('Nota').AsString);
OtrosCargos .Add.Codigo := 'V6';
OtrosCargos.Items[0].Monto := cds_Traslado.FieldByName('Importe').AsString;
界面
function Get_Proyecto: IXMLFactura_proyecto;
function Get_Nota: IXMLNotasList;
function Get_CargosCreditos: IXMLFactura_cargosCreditosList;
function Get_OtrosCargos: IXMLFactura_otrosCargosList;
.........
function Getfactura(Doc: IXMLDocument): IXMLFactura;
begin
Result := Doc.GetDocBinding('PPY:factura', TXMLFactura, TargetNamespace) as IXMLFactura;
end;
function Loadfactura(const FileName: string): IXMLFactura;
begin
Result := LoadXMLDocument(FileName).GetDocBinding('PPY:factura', TXMLFactura, TargetNamespace) as IXMLFactura;
end;
function Newfactura: IXMLFactura;
begin
Result := NewXMLDocument.GetDocBinding('PPY:factura', TXMLFactura, TargetNamespace) as IXMLFactura;
end;
结果
<PPY:destino codigo="8476" nombre="PLANTA DE MOTORES 4 CILINDROS - SALTILLO"/>
<nota xmlns="http://www.dfdchryslerdemexico.com.mx/Addenda /PPY">Addenda de Prueba</nota>
<otrosCargos xmlns="http://www.dfdchryslerdemexico.com.mx/Addenda/PPY" codigo="V6" monto="1373.93"/>
前缀存在于目的节点,而不是节点 NOTA 和 OTROSCARGOS,
在什么时候添加命名空间?
坦克非常