评论者:bpeter
我发现了一种“解决方案”,如下所示,并在(link: ^zip-xml-bug-descent.tgz)中。
`
(defn descent=
[tagname]
(fn [loc]
(filter #(and (zip/branch? %) (= tagname (:tag (zip/node %))))
(testing "使用 descent 选择内部名称"
(is (= "Inner"
(-> (zip-xml/xml1-> root :Root :Group (descent= :Group) :Name zip-xml/text)))))
`
似乎在 {{tag=}} 匹配的元素自身在 {{or}} 表达式中的第一个表达式是我案中存在的问题。我怀疑它可以用来选择根元素。还有其他需要吗?
`
(defn tag=
[tagname]
(fn [loc]
(or (= tagname (:tag (zip/node loc)))
(filter #(and (zip/branch? %) (= tagname (:tag (zip/node %))))
(zf/children-auto loc)))))
`
也许应该有个 {{self}} 断言?