gpt4 book ai didi

php - Symfony2.8。如何从post请求中获取数据

转载 作者:可可西里 更新时间:2023-11-01 12:33:21 25 4
gpt4 key购买 nike

如何在我的 Controller 中接收来自 POST 请求的数据?我不使用 Twig 。

public function newAction(Request $request)
{
//when I use
$content = $request->getContent();
// as result I see "string" with need field and value. It's not json
// array
// value like
/*
string '------WebKitFormBoundaryI12ukQBs3HdmPjvh
Content-Disposition: form-data; name="title"

"valuefortitle"
------WebKitFormBoundaryI12ukQBs3HdmPjvh
Content-Disposition: form-data; name="name"

"supername"
------WebKitFormBoundaryI12ukQBs3HdmPjvh--
' (length=253)
*/
}

或者我如何序列化(转换)Post 数据到对象或数组

我使用带有 header “Content-Type: application/json”的 Postman 发送请求。

你能告诉我如何保存文件(图像)吗?

最佳答案

您可以用于POST 请求:

$request->request->get('data');

对于GET请求:

$request->query->get('data');

对于FILE 查询:

$request->files.

然后问你的问题How to save image?,你必须创建uploads -> excels:

$dir = $this->get('kernel')->getRootDir() . '/../web/uploads/images/';
$name = uniqid() . '.jpeg';

foreach ($request->files as $uploadedFile) {
$uploadedFile->move($dir, $name);
}
$file = $this->get('kernel')->getRootDir() . "/../web/uploads/images/" . $name;

if (file_exists($file)) {
echo "Successfully saved";
}

关于php - Symfony2.8。如何从post请求中获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35386182/

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