gpt4 book ai didi

php - 访问 Symfony2 请求对象中的 POST 值

转载 作者:IT老高 更新时间:2023-10-28 11:52:22 25 4
gpt4 key购买 nike

好的,这是一个新手问题,但我无法在任何地方找到答案。在 Symfony2 的 Controller 中,我想从我的一个表单中访问 POST 值。在 Controller 中我有:

public function indexAction()
{
$request = $this->get('request');
if ($request->getMethod() == 'POST') {
$form = $this->get('form.factory')->create(new ContactType());
$form->bindRequest($request);
if ($form->isValid()) {
$name_value = $request->request->get('name');

不幸的是,$name_value 没有返回任何内容。我究竟做错了什么?谢谢!

最佳答案

表单发布值存储在请求中表单的名称下。例如,如果您重写了 ContactType() 的 getName() 方法以返回“联系人”,您可以这样做:

$postData = $request->request->get('contact');
$name_value = $postData['name'];

如果您仍然遇到问题,请尝试在 $request->request->all() 上执行 var_dump() 以查看所有帖子值。

关于php - 访问 Symfony2 请求对象中的 POST 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6916324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com