评论由:bpeter 提供
如您所见,我找到了一种“变通方法”并在(link: ^zip-xml-bug-descent.tgz)中
`
(defn descent=
[tagname]
(fn [loc]
(filter #(and (zip/branch? %) (= tagname (:tag (zip/node %))))
(testing "使用descend选择内部名称"
(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}}谓词?