2

我想知道是否允许在 JSON 中的 _embed 元素中包含更多的 _embed 元素,或者这个想法是否只有一个级别?

请参阅普通 HAL 示例:

{
"_links": {
    "self": { "href": "/orders" },
    "curies": [{ "name": "ea", "href": "http://example.com/docs/rels/{rel}", "templated": true }],
    "next": { "href": "/orders?page=2" },
    "ea:find": {
        "href": "/orders{?id}",
        "templated": true
    },
    "ea:admin": [{
        "href": "/admins/2",
        "title": "Fred"
    }, {
        "href": "/admins/5",
        "title": "Kate"
    }]
},
"currentlyProcessing": 14,
"shippedToday": 20,
"_embedded": {
    "ea:order": [{
        "_links": {
            "self": { "href": "/orders/123" },
            "ea:basket": { "href": "/baskets/98712" },
            "ea:customer": { "href": "/customers/7809" }
        },
        "total": 30.00,
        "currency": "USD",
        "status": "shipped"
    }, {
        "_links": {
            "self": { "href": "/orders/124" },
            "ea:basket": { "href": "/baskets/97213" },
            "ea:customer": { "href": "/customers/12369" }
        },
        "total": 20.00,
        "currency": "USD",
        "status": "processing"
    }]
}

}

以及问题是什么(注意第二个嵌入是第一个的孩子):

{
   "_links" : {
     "self" : {
     "href" : "http://localhost:8090/fs/rest/roles/roleDefinition=Z1407031312513158080GIVMZ"
     }
   },
   "_embedded" : {
      "roles" : [ {
      "_links" : {
          "self" : {
               "href" : "http://localhost:8090/fs/rest/roles/Z1407031312513168080XCAKL"
           }
       },
       "id" : "Z1407031312513168080XCAKL",
        "_embedded" : {
             "roleDefinition" : {
              "_links" : {
              "self" : {
               "href" : "http://localhost:8090/fs/rest/roledefinitions/Z1407031312513158080GIVMZ"
        (rest ommitted)

多层次嵌入式资源的图示

我自己正在阅读http://stateless.co/hal_specification.html上的文档,因为嵌入式资源与普通资源相同,因此它可以再次包含嵌入式资源?

4

1 回答 1

0

我也遇到过这个问题。似乎答案是肯定的或否定的。

因为嵌入的资源可以

完整、部分或不一致的版本

,是否使用 _embedded 标记或直接嵌入资源取决于实现者。

在我看来,最好像使用链接时一样返回嵌入的资源。api 的使用者可能已经编写了解析器来处理嵌入的资源,(通常也包括 _embedded 标记)

https://datatracker.ietf.org/doc/html/draft-kelly-json-hal-06#section-4.1.2

4.1.2. _嵌入式

保留的“_embedded”属性是可选的

它是一个对象,其属性名称是链接关系类型(
由 [RFC5988] 定义),值是资源对象或资源对象
数组。

嵌入式资源可以是从目标 URI 提供的表示的完整、部分或不一致的版本。

于 2016-05-16T19:25:48.957 回答