5

从 5 迁移到 6,我遇到了障碍,找不到相关文档。

Guzzle 文档在这里,http ://guzzle.readthedocs.io/en/latest/quickstart.html#creating-a-client ,我们可以添加“任意数量的默认请求选项”的站点。

我想在每个请求中发送“foo=bar”。例如:

$client = new Client([
    'base_uri' => 'http://google.com',
]);

$client->get('this/that.json', [
    'query' => [ 'a' => 'b' ],
]);

这将在http://google.com/this/that.json?a=b上生成 GET

如何修改客户端构造以使其产生:

http://google.com/this/that.json?foo=bar&a=b

谢谢你的帮助!

4

3 回答 3

7

好的,到目前为止,这在这里有效:

        $extraParams = [
            'a' => $config['a'],
            'b' => $config['b'],
        ];

        $handler = HandlerStack::create();
        $handler->push(Middleware::mapRequest(function (RequestInterface $request) use ($extraParams) {

            $uri  = $request->getUri();
            $uri .= ( $uri ? '&' : '' );
            $uri .= http_build_query( $extraParams );

            return new Request(
                $request->getMethod(),
                $uri,
                $request->getHeaders(),
                $request->getBody(),
                $request->getProtocolVersion()
            );
        }));

        $this->client = new Client([
            'base_uri' => $url,
            'handler' => $handler,
            'exceptions' => false,
        ]);

如果有人知道如何使它看起来不那么险恶,我会说谢谢!

于 2016-08-04T03:48:53.977 回答
4

我在这里找到了一个不错的解决方案。

基本上,在第一个参数数组中定义的任何内容都成为config客户端的一部分。

这意味着您可以在初始化时执行此操作:

$client = new Client([
    'base_uri' => 'http://google.com',
    // can be called anything but defaults works well
    'defaults' => [
        'query'  => [
            'foo' => 'bar',
        ]
    ]
]);

然后,在使用客户端时:

$options = [
    'query'  => [
        'nonDefault' => 'baz',
    ]
];

// merge non default options with default ones
$options = array_merge_recursive($options, $client->getConfig('defaults'));

$guzzleResponse = $client->get('this/that.json', $options);

值得注意的是,array_merge_recursive函数附加到嵌套数组而不是覆盖。如果您计划更改默认值,您将需要不同的实用程序函数。但是,当默认值不可变时,它可以很好地工作。

于 2019-11-18T10:04:41.717 回答
-3

github中提出的解决方案看起来很丑陋。这看起来并没有好多少,但至少更具可读性并且也有效。如果有人知道为什么不应该使用,我想要反馈:

$query = $uri . '/person/id?personid=' . $personid . '&name=' . $name;    
return $result = $this->client->get(
  $query
  )
  ->getBody()->getContents();
于 2018-11-06T15:10:32.423 回答