gpt4 book ai didi

Symfony 单元测试 : How to simulate a Http-PUT with a json body?

转载 作者:行者123 更新时间:2023-12-04 17:23:42 30 4
gpt4 key购买 nike

我使用客户端对象来模拟和测试我的 Silex-Web 服务。如何使用 PUT 方法发送 JSON-Body?

我的想法是:

$crawler = $this->client->request('PUT', '/test', array(), array(), array(), '{"id":"34"}');

那行不通。 :(

最佳答案

请尝试使用此代码:

$client->request(
'PUT', '/test', array(), array(),
array(
'CONTENT_TYPE' => 'application/json',
'HTTP_X-Requested-With' => 'XMLHttpRequest'
),
'{"id":"34"}'
);

关于Symfony 单元测试 : How to simulate a Http-PUT with a json body?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15325876/

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