2

我不明白为什么xml."con:cred"."ser:user" = "modified_username"不更改文本。有人可以解释一下吗?

input = """
<kuk:acc xmlns:kuk="kuk">
    <con:cred xmlns:con="http://www.bea.com/wli/sb/resources/config">
        <ser:user xmlns:ser="http://www.bea.com/wli/sb/services">username</ser:user>
    </con:cred>
</kuk:acc>
"""

def xml = new XmlSlurper(keepWhitespace:true).parseText(input).declareNamespace(
    ser:"http://www.bea.com/wli/sb/services",
    con:"http://www.bea.com/wli/sb/resources/config")
println xml."con:cred"."ser:user" 

xml."con:cred"."ser:user" = "modified_username" // That doesn't work
println xml."con:cred"."ser:user" 

xml.cred.user = "modified_username" // That works
println xml."con:cred"."ser:user" 

/*
def outputBuilder = new StreamingMarkupBuilder() 
String result = outputBuilder.bind{ mkp.yield xml }
println result
*/
4

1 回答 1

1

我一直在研究这个问题一段时间,并且正要问同样的事情。假设使用重载的 '=' 运算符时调用的方法是 putAt(int, Object),请仔细查看GPathResult 代码

public void putAt(final int index, final Object newValue) {
    final GPathResult result = (GPathResult)getAt(index);

    if (newValue instanceof Closure) {
        result.replaceNode((Closure)newValue);
    } else {
        result.replaceBody(newValue);
    }
}

表明应该调用 replaceBody。正如 *tim_yates* 指出的那样,replaceBody 运行良好,因此似乎调用了 replaceNode(我不明白为什么)。挖掘NodeChildren 的 replaceNode,我们可以看到

protected void replaceNode(final Closure newValue) {
    final Iterator iter = iterator();
    while (iter.hasNext()) {
        final NodeChild result = (NodeChild) iter.next();
        result.replaceNode(newValue);
    }
}

闭包永远不会被调用,所以当调用 replaceNode 时什么都不做。所以我认为 replaceNode 中存在一个错误(它什么都不做),并且在执行xml."con:cred"."ser:user" = "modified_username"表达式的正确部分时被评估为闭包(在这一点上我需要帮助来理解为什么:-)。

于 2012-01-16T11:56:14.543 回答