3
傳遞參數
讓我們考慮一個示例代碼XQuery中
declare function local:topic(){
let $forumUrl := "http://www.abc.com"
for $topic in $rootNode//h:td[@class="alt1Active"]//h:a
return
<page>{concat($forumUrl, $topic/@href, '')}</page>
};
declare function local:thread(){
let $forumUrl := "http://www.abc.com"
for $thread in $rootNode//h:td[@class="alt2"]//h:a
return
<thread>{concat(forumUrl, $thread/@href, '')}</thread>
};
而不是重複「$ forumUrl」的,我可以傳遞任何參數在這code.If的可能,請幫助我。