0
當試圖索引文件中,我們收到此錯誤:Azure的搜索 - 錯誤
{"Token PropertyName in state ArrayStart would result in an invalid JSON object. Path 'value[0]'."}
我們對使用.NET庫索引代碼是:
using (var indexClient = new SearchIndexClient(searchServiceName, indexName, new SearchCredentials(apiKey)))
{
indexClient.Documents.Index(IndexBatch.Create(IndexAction.Create(documents.Select(doc => IndexAction.Create(doc)))));
}
有誰知道爲什麼這個錯誤發生?
你能否提供你試圖索引的對象的類描述? –
感謝您的時間。該類是一個簡單的POCO:public class Address { public string Id {get;組; } public string Addr {get;組; } public string Country {get;組; } public int Flag {get;組; } } – user2981411
您能否提供您正在嘗試索引的示例文檔? –