在 Zend 框架中使用 getRawBody() 时,Restful 请求正文返回错误的 JSON 格式
我正在测试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 命令行正在删除双引号。它也不识别单引号。您可以尝试对整个内容进行双引号并转义内部使用的引号,如下所示:
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: