RTK 查询 "merge-patch+json" 内容类型破坏请求正文

RTK Query "merge-patch+json" content type ruins request body

我正在使用 RTK 查询突变来更新我的实体。后端有 api-platform,它只接受带有 PATCH 请求的“application/merge-patch+json”Content-Type。 如果我尝试将其放入我的突变的 return 语句中:

method: 'PATCH',
headers: {
  "Content-Type": 'application/merge-patch+json'
},

我的请求正文中只有 [object Object] 而不是 json。但是,如果我将我的方法更改为“PUT”或将 Content-Type 更改为“application/json”,我的请求正文符合预期并且包含有效的 json.

fetchBaseQuery 默认情况下不知道内容类型。在那种情况下而不是通过

  body: something

来自你的query, 你需要通过

  body: JSON.stringify(something)