评论由: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}} 断言吗?