为什么SelectSingleNode返回null对象?

时间:2015-07-28 18:33:41

标签: xml powershell

$metas为空,因此AppendChild失败。为什么SelectSingleNode在我的代码中返回一个空对象:

$xml=[xml]@'
<?xml version="1.0" encoding="iso-8859-1"?>
<catalogue>
  <products>
    <product id="pdt1">
      <metas>
      </metas>
    </product>
    <product id="pdt2">
      <metas>
      </metas>
    </product>    
  </products>
</catalogue>
'@

$product_code = "pdt2"

$metas = $xml.SelectSingleNode("//catalogue/products/product[@code='$product_code']/metas")


$attr=$xml.CreateAttribute("date");                            
$attr.Value = "2015.07.24"
$metas.Attributes.Append($attr) 

$newmeta1 = $xml.CreateElement('meta')
$attr1=$xml.CreateAttribute("code");  
$attr1.Value = "123456"
$newmeta1.Attributes.Append($attr1) 

$metas.AppendChild($newmeta1) 

1 个答案:

答案 0 :(得分:2)

您的product XML节点没有code属性。相反,它具有id属性。因此,您应该使用[@id=...]代替[@code=...]

试试这个:

$metas = $xml.SelectSingleNode("//catalogue/products/product[@id='$product_code']/metas")