如何使用 ords 重命名 oracle rest api 上的项目

How to rename items on oracle rest api using ords

我想更改由 REST API 上的命令生成的 json 上的名称 "items"。 我想成为 table 名称或 dll 指令,如 "insert" 或 "update"。

我已经安装并运行了 ords。 在一个模块上,我有 GET:http://localhost:80/ords/db/products/:idTab

当我访问 URL 时,JSON 返回如下:

{

    "items": [
        {
            "id_prod": 18159,
            "desc_prod": "ABRAC. \"D\"   1\""
        }
}

我想将项目名称替换为 table 名称(产品)。 我怎样才能按照命令执行此操作?

{

    "items": [
        {
            "id_prod": 18159,
            "desc_prod": "ABRAC. \"D\"   1\""
        }
}

你不能。

Oracle 有一个 REST 标准,它规定了您看到的使用 "items" 结构的集合的 JSON 响应格式。

如果您想要其他东西,您需要自己创建 JSON,并且 return 输出作为媒体资源(clob 或 blob),mime 类型为 application-json => 当您这样做时,我们不会将输出转换为 JSON.

Example here.