MarkLogic 5.0ですべてのスコープ内関数を取得するためのAPIはありますか?
質問する
75 次
2 に答える
1
前述のように、ML5には直接APIはありません。正規表現のアプローチはお勧めしません。XQueryを解析する必要があります。しかし、デバッガベースのアプローチは機能する可能性があります。いくつかのアイデアについては、https://github.com/robwhitby/xray/blob/coverage/src/coverage.xqyをご覧ください。
于 2013-01-30T03:14:04.747 に答える
0
ドキュメントを照会できませんか?
xquery version "1.0-ml";
declare namespace xhtml="http://www.w3.org/1999/xhtml";
let $doc := xdmp:http-get("https://docs.marklogic.com/5.0/all",
<options xmlns="xdmp:http-get">
<format xmlns="xdmp:document-get">xml</format>
</options>)[2]
let $table := $doc/node()//xhtml:table[@class="api_table"]
return $table//xhtml:td/xhtml:a/fn:string(.)
于 2015-02-21T23:07:39.890 に答える