gpt4 book ai didi

javascript - 如何在REST中有效地更新复杂的大对象?

转载 作者:行者123 更新时间:2023-11-28 08:15:41 25 4
gpt4 key购买 nike

假设我有一个来自 html 页面的复杂对象,它映射到这个 JSON 结构:

{
id:"", //is not shown to user
title : "",
description: "",
summary: "",
// other too many fields
}

要使用“通用”REST 方法更新此记录,我应该使用:

- POST rest/record/{id}

使用“通用”方法,整个记录对象被编码为 JSON 对象并传递给 REST 服务,然后这个整个对象经过验证,传递给 SQL 查询数据基础和数据库引擎使用所有数据更新记录。但是,如果用户只更新标题中的一个符号怎么办?

在这种情况下,我应该将该对象分成几个:

{
id:"", //is not shown to user
{ recordId:"", title : "", } ,
{ recordId:"", description: "", } ,
{ recordId:"", summary: "", } ,
// other too many fields
}

我应该如何重新组织剩余网址?像这样:

- POST rest/record/{id}/title
- POST rest/record/{id}/description
- POST rest/record/{id}/summary
- others

这种 URL 方法是好还是坏(我的意思是对于来自端的 javaScript 和 REST 后端编程)?还有其他方法可以解决这个问题吗?

最佳答案

不使用 POST,而是使用 PATCH 并仅发送已更改的内容:

PATCH rest/record/{id}

Data: { title: "new title" }

rest/record/{id}/title、rest/record/{id}/summary 等 URL 并不是真正的 RESTfull,因为它们不是资源,而是资源的属性。

关于javascript - 如何在REST中有效地更新复杂的大对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23622531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com