在 Zend 框架中使用 getRawBody() 时,Restful 请求正文返回错误的 JSON 格式

发布于 2024-12-09 00:09:14 字数 614 浏览 1 评论 0原文

我正在测试使用 zend 框架构建的 Restful 服务。我正在使用下面的命令来测试它(从这个 post< /a>)。

curl -v -H "Content-Type: application/json" -X GET -d '{"locationId":"33","limit":"5","offset":"0"}' \ http://localhost/api/review

但是当我使用 $payload = 在 Zend 中获取请求正文时$this->getRequest()->getRawBody();,var_dump($payload) 返回 "'{locationId:33,limit:5,offset:0}'",其中双引号被删除,以便我无法将其解码为数组。

其原因何在?请帮忙。提前致谢。

I'm testing the restful service built with zend framework. I'm using the command below to test it (learned from this post).

curl -v -H "Content-Type: application/json" -X GET -d '{"locationId":"33","limit":"5","offset":"0"}' \ http://localhost/api/review

But when I fetch the request body in Zend using $payload = $this->getRequest()->getRawBody();, the var_dump($payload) returns "'{locationId:33,limit:5,offset:0}'", where the double quotation marks are removed so that I can't decode it into array.

What's reason of it? Please help. Thank s in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝梦月影 2024-12-16 00:09:14

Windows 命令行正在删除双引号。它也不识别单引号。您可以尝试对整个内容进行双引号并转义内部使用的引号,如下所示:

curl -v -H "Content-Type: application/json" -X GET -d "{\"locationId\":\"33\",\"limit\":\"5\",\"offset\":\"0\"}" http://localhost/api/review

The Windows command line is removing the double quotes. It also does not recognize single quotes. You can try double quoting the entire thing and escaping the quotes use internally like this:

curl -v -H "Content-Type: application/json" -X GET -d "{\"locationId\":\"33\",\"limit\":\"5\",\"offset\":\"0\"}" http://localhost/api/review
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文