1
私のJSONドキュメントは、次のようになりながら:私は実行するとCTS:検索および検索:検索JSONドキュメントを扱う
{
"directions": ["Heat oil in heavy... "],
"rating": 5,
"title": "Mahi-Mahi in Tomato Olive Sauce",
"ingredients": [
"2 tablespoons extra-virgin olive oil",
"1 cup chopped onion",
"1 cup dry white wine",
"1 teaspoon anchovy paste",
],
"sodium": null
}
:
cts:search(fn:doc(),"anchovy")/title/string()
私が取得:Mahi-Mahi in Tomato Olive Sauce
、望まれています。
しかし、私は実行すると:
search:search("anchovy", $options)/search:result/title/string()
私は空のシーケンスを取得します。注:私はtransform-results = "raw"を設定しました。
P.S私は、search:search("anchovy", $options)/search:result
がjsonではなくテキスト形式であるように見えることを確認しました。
この場合、search:search
を使用して希望の結果を得ることは可能ですか?
Tamasさん、ありがとう、うまくいきました。 – Yash