目录

Search

  1. 前言
  2. 业务实体服务简介
  3. Enterprise Java Bean 业务实体服务调用
  4. 具象状态传输业务实体服务调用
  5. 简单对象访问协议业务实体服务调用
  6. 用于交叉引用记录和 BVT 计算的服务
  7. 支持企业关联服务
  8. 清理、分析和转换业务实体数据的外部调用
  9. 使用 REST API 添加业务实体记录

业务实体服务指南

业务实体服务指南

请求 URL

请求 URL

搜索业务实体 URL 使用以下格式:
用于简单搜索的 URL
请对简单搜索使用以下 URL:
http://<host>:<port>/<context>/<database ID>/<business entity>?q=<string value>
向搜索业务实体 URL 发出以下 HTTP GET 请求:
GET http://<host>:<port>/<context>/<database ID>/<business entity>?q=<string value>
用于字段搜索的 URL
请对字段搜索使用以下 URL:
http://<host>:<port>/<context>/<database ID>/<business entity>?fq=<business entity field name>='<business entity field value>'
用于构面搜索的 URL
请对包含构面的简单搜索使用以下 URL:
http://<host>:<port>/<context>/<database ID>/<business entity>?q=<string value>&facets=<field name>
请对包含构面的字段搜索使用以下 URL:
http://<host>:<port>/<context>/<database ID>/<business entity>?fq=<business entity field name>='<business entity field value>'&facets=<field name>
用于筛选器搜索的 URL
请对包含筛选器的简单搜索使用以下 URL:
http://<host>:<port>/<context>/<database ID>/<business entity>?q=<string value>&filters=<field name1>=<field value1> AND <field name2>=<field value2> ...
请在搜索中使用 q 或 fq 参数。
URL 编码
请使用 URL 编码,因为 URL 包含空格和单引号等字符。
以下示例显示了搜索业务实体 URL 的 URL 编码表示形式:
http://<host>:<port>/<context>/<database ID>/<business entity>?q=<field name>%3D%27<value of the field>