1

我的问题是我无法为特定的 调用我的自定义 API itemId ,但是当我调用普通 API 时,它按预期工作。

目前,我可以成功调用特定项目的普通 API,如下所示:

myBcServer:Port/bc/api/v1.0/companies(666e508d-9abb-ea11-bbac-000d3a492c82)/items(a5dc88b9-9abb-ea11-bbac-000d3a492c82)

但是当我尝试对我的自定义 API 做同样的事情时:

myBcServer:Port/bc/api/contoso/app1/v2.0/companies(666e508d-9abb-ea11-bbac-000d3a492c82)/items(a5dc88b9-9abb-ea11-bbac-000d3a492c82)

我收到一个错误:

"error": {
        "code": "BadRequest_NotFound",
        "message": "Bad Request - Error in query syntax.  CorrelationId:  f7bc0b59-45ac-4293-9f94-108d6436272c."
    }

我可以在/items. 我在哪里得到所有项目的清单。

我制作的自定义 API 页面如下所示:

page 50101 ItemsCustomApi
{
    PageType = API;
    Caption = 'API: Items';
    APIPublisher = 'contoso';
    APIGroup = 'app1';
    APIVersion = 'v2.0';
    EntityName = 'item';
    EntitySetName = 'items';
    SourceTable = Item;
    DelayedInsert = true;
    Editable = false;

    layout
    {
        area(Content)
        {
            field(id; SystemId)
            {
                Caption = 'ID';
            }
            field("No"; "No.")
            {
                Caption = 'No.';
            }
            field("UnitPrice"; "Unit Price")
            {
                Caption = 'Unit Price';
            }
            field("VendorNo"; "Vendor No.")
            {
                Caption = 'Vendor No.';
            }
        }
    }
}

我怀疑我需要向页面添加一个属性,例如CanGetById = true. 不过,我不知道。

BC 版本在 docker 中运行:mcr.microsoft.com/businesscentral/sandbox:dk Docker 版本:V19.03.12

4

1 回答 1

1

您需要将页面属性ODataKeyFields设置为能够按 id 选择:

ODataKeyFields = SystemId;
于 2020-09-28T06:32:47.037 回答