我正在使用algolia search的php API来执行名称搜索。我希望它只返回objectIDs,因为我想根据其他(外部)标准过滤掉匹配项。我将attributesToRetrieve参数作为字符串和数组添加到search()中,但它仍然返回所有内容。
有什么想法吗?谢谢!
$index->search('value', array("attributesToRetrieve" => "objectID"));
OR
$index->search('value', array("attributesToRetrieve" => array("objectID")));