如何在 HTTP Get 请求中发送正文 Angular 9

How to send body in a HTTP Get Request Angular 9

我可以在 Postman 中发送正文 (json) 以获取 GET 请求。

我的问题是我无法在我的 yes-no.service.ts 文件中执行相同的操作。

getYesNoDropdowns() {
  return this.http.get(AppComponent.lookUpListUrl, { headers: headers });
}

如何实现?我必须只使用 Get。

提前致谢!

帖子有正文,获取没有。如果您使用 get,则需要将数据放在查询字符串中。