我在Algolia發送一個數組需要索引時遇到了一些困難,因爲我必須先編碼它才能將其保存到數據庫中。通過Algolia的Laravel搜索框架發送數組索引
$algoliaAgent = AlgoliaAgent::firstOrCreate([
'FirstName' => $item->FirstName,
'LastName' => $item->LastName,
'AgentRecId' => $item->AgentRecId,
'Style' => json_encode(explode(',', $item->Style))
]);
$algoliaAgent->pushToIndex();
在Algolia結果索引是這樣的:
"[\"value1\",\"value2\",\"value3\"]"
是否有其發送到Algolia之前將值解碼的方法?
使用Laravel 5.2 –