deserialize

用于反序列化 JSON:API 资源的助手。


const resource = drupal.deserialize(body, options?)
  • body: JsonApiResponse
    • 必需
    • 原始 JSON:API 响应。
  • body
    • 可选
    • 反序列化的选项。

备注


示例

const url = drupal.buildUrl("/jsonapi/node/article", {
sort: "-created",
"fields[node--article]": "title,path",
})
const response = await drupal.fetch(url.toString())
const json = await response.json()
const resource = drupal.deserialize(json)