Trying to sort a node set from Saxon

↘锁芯ラ 提交于 2019-12-02 09:55:25

Why don't you use XQuery to do the sorting? Generate and compile the query

'declare variable $nodes external;
for $n in $nodes order by $n/' + sortkey + ' return $n'

and then compile and execute this query, binding $nodes to your nodeSet obtained from the first query.

I would think that the reason your code is failing is that the elements are in a namespace, and when you construct a QName to hold the sort key, you are constructing a no-namespace QName.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!