Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一些数据将添加到表单内的隐藏输入字段中。
现在,由于我使用的是 symfony2 表单,因此这些字段不会被提交。即$form->getData()不从这些字段中获取数据。
$form->getData()
我如何从那些动态添加(隐藏)的输入字段中获取数据?
在表单类型的上下文中获取帖子值:
$postData = $request->request->get('form_name'); $name_value = $postData['title'];
获取不在表单类型上下文中的帖子值(也许这是您需要的):
$data = $request->request->all(); $name = $data['input_name'];