0

nuxeo ログ ファイルに以下の 3 つのエラーがあります。

原因: com.marklogic.xcc.exceptions.XQueryException: XDMP-OPTION: cts:element-reference(fn:QName("","webc__name"), "type=null") -- 無効なオプション "type=null" [セッション: ユーザー=nuxeouser、cb=nuxeo [コンテンツソース: ユーザー=nuxeouser、cb=nuxeo [プロバイダー: アドレス=localhost:8010、プール=1/64]]] [クライアント: XCC/8.0-5、サーバー: XDBC/ 8.0-5.8] expr 5 行目: cts:element-reference(fn:QName("","webc__name"), "type=null")

原因: com.marklogic.xcc.exceptions.XQueryException: XDMP-OPTION: cts:element-reference(fn:QName("","dc__issued"), "type=null") -- 無効なオプション "type=null" [セッション: ユーザー=nuxeouser、cb=nuxeo [コンテンツソース: ユーザー=nuxeouser、cb=nuxeo [プロバイダー: アドレス=localhost:8010、プール=1/64]]] [クライアント: XCC/8.0-5、サーバー: XDBC/ 8.0-5.8] expr 5 行目: cts:element-reference(fn:QName("","dc__issued"), "type=null")

原因: com.marklogic.xcc.exceptions.XQueryException: XDMP-OPTION: cts:element-reference(fn:QName("","nt__dueDate"), "type=null") -- 無効なオプション "type=null" [セッション: ユーザー=nuxeouser、cb=nuxeo [コンテンツソース: ユーザー=nuxeouser、cb=nuxeo [プロバイダー: アドレス=localhost:8010、プール=1/64]]] [クライアント: XCC/8.0-5、サーバー: XDBC/ 8.0-5.8] 5行目

4

1 に答える 1

1

cts:element-reference オプションは、type=null を許可しません。有効なデータ型は次のとおりです。

  • 整数
  • unsignedInt
  • 長いです
  • unsignedLong
  • 浮く
  • ダブル
  • 小数
  • 日付時刻
  • 時間
  • 日にち
  • g年月
  • g年
  • g月
  • g日
  • 年月期間
  • dayTimeDuration
  • ストリング
  • 任意のURI
  • 長緯度点

こちらのドキュメントを参照してください: https://docs.marklogic.com/cts:element-reference

于 2016-12-21T21:18:15.423 に答える