由:bpeter 评论
我找到了一个 "妥协方案",如下文所示,在 (链接:^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}} 断言?