使用 symfony 1.4 在 RESTful Web 服务中获取空 POST 参数

发布于 2024-12-08 13:55:31 字数 576 浏览 0 评论 0原文

我设法使用 GET 参数使用 symfony 制作了一堆 Web 服务,但我需要使用 POST 参数来注册 Web 服务。

但是当我尝试获取这些 POST 参数时,例如 $request->getParameter('test');,它们只是返回 null 值。

怎么来的?

编辑

这是一个简单的示例

testSuccess.json.php

{
   "test": <?php echo json_encode($test); ?>
}

action.class.php

public function executeTest(sfWebRequest $request) {
   $this->test = $request->getParameter('test');
}

And Here's the result

I managed to make a bunch of webservices with symfony using GET parameters, but i need to use POST parameters for a signup webservice.

But when I try to get those POST parameters, for example $request->getParameter('test');, they just return a null value.

How comes ?

EDIT

Here's a straightforward exemple

testSuccess.json.php

{
   "test": <?php echo json_encode($test); ?>
}

action.class.php

public function executeTest(sfWebRequest $request) {
   $this->test = $request->getParameter('test');
}

And here's the result

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

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

发布评论

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

评论(3

我很OK 2024-12-15 13:55:31

这表明没有随您的请求发送的名为“电子邮件”的 POST 参数。除此之外,如果没有其他信息,其他人无法对您的问题说太多。

That would indicate that there isn't a POST parameter called 'email' sent with your request. Apart from that there's not much anyone else can say about your problem without additional information.

半寸时光 2024-12-15 13:55:31

我遇到了同样的问题。似乎当不使用

Content-Type: application/x-www-form-urlencoded

这些参数时,Symfony 中不可用。我在 http 文档中找不到任何规定这些方法的内容类型的内容。我已经为这个错误创建了一个 symfony_ticket

因此,要解决您的问题,请将此 Content-Type 标头添加到您的请求中。

I have run into the same problem. It seems that when one does not use

Content-Type: application/x-www-form-urlencoded

these parameters are not available in Symfony. I cannot find anything in the http documentation that dictates this content type for these methods. I have created a symfony_ticket for this bug.

So, to fix your issue add this Content-Type header to your request.

从此见与不见 2024-12-15 13:55:31

有一种方法可以解决 JSON 对象帖子丢失 POST 参数的问题。您不需要使用各种参数方法,而是需要使用:

$request->getContent()

它将 JSON 显示为帖子正文中的字符串。将内容设置为 application/json 后,Symfony 会有效地忽略该内容,因此不会获取正文中的参数。

There is a way around the issue with the POST parameters being lost with JSON object posts. Instead of using the various parameter methods you need to use the:

$request->getContent()

Which shows the JSON as a string within the body of the post. Having the content set as application/json, Symfony effectively ignores the content so doesn't pickup the parameters in the body.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文