我正在尝试从集合(文件系统)生成树视图。不幸的是,有些文件有特殊的字符,如üä和ö。我希望将它们html编码为ä
当我从变量中获取它们时,它们是URL编码的。首先我将它们解码为UTF-8,然后....我不知道如何进一步。
<li><a href="#">{util:unescape-uri($child, "UTF-8")}</a>
函数util:parse
与我想要的完全相反。
这是递归函数:
xquery version "3.0";
declare namespace ls="ls";
declare option exist:serialize "method=html media-type=text/html omit-xml-declaration=yes indent=yes";
declare function ls:ls($collection as xs:string, $subPath as xs:string) as element()* {
if (xmldb:collection-available($collection)) then
(
for $child in xmldb:get-child-collections($collection)
let $path := concat($collection, '/', $child)
let $sPath := concat($subPath, '/', $child)
order by $child
return
<li><a href="#">{util:unescape-uri($child, "UTF-8")}</a>
<ul>
{ls:ls($path,$sPath)}
</ul>
</li>,
for $child in xmldb:get-child-resources($collection)
let $sPath := concat($subPath, '/', $child)
order by $child
return
<li> <a href="javascript:loadPage('{$sPath}');">{util:unescape-uri($child, "UTF-8")}</a></li>
)
else ()
};
let $collection := request:get-parameter('coll', '/db/apps/ebner-online/resources/xss/xml')
return
<ul>{ls:ls($collection,"")}</ul>
答案 0 :(得分:1)
我建议使用util:unescape-uri()
和xmldb:encode-uri()
,而不是xmldb:decode-uri()
。创建/存储集合或文档名称时,请使用encode
版本。显示集合或文档名称时,请使用decode
版本。请参阅the function documentation for the xmldb module。
至于强制ä
而不是ü
,这是一个更棘手的序列化问题。两者与ä
一起是相同UTF-8字符的等效表示。为什么不让角色通过ü
?