PHP ES客户端具有一种称为的方法
suggest,您可以将其用于该目的:
$params = [ 'index' => 'tstidx', 'body' => [ 'try' => [ 'text' => 'a', 'completion' => [ 'field' => 'suggest' ] ] ]];$client = ClientBuilder::create()->build();$response = $client->suggest($params);

PHP ES客户端具有一种称为的方法
suggest,您可以将其用于该目的:
$params = [ 'index' => 'tstidx', 'body' => [ 'try' => [ 'text' => 'a', 'completion' => [ 'field' => 'suggest' ] ] ]];$client = ClientBuilder::create()->build();$response = $client->suggest($params);