2016-02-01 3 views

ответ

1

Ну, вы не указали какой-либо код, поэтому я предполагаю, что ваша ошибка здесь: Algolia is schemaless. Вы должны сделать это, как указано: in this page :

{ 
    "objectID": 42,    // record identifier 
    "title": "Breaking Bad", // string attribute 
    "episodes": [    // array of strings attribute 
    "Crazy Handful of Nothin'", 
    "Gray Matter" 
    ], 
    "like_count": 978,   // integer attribute 
    "avg_rating": 1.23456,  // float attribute 
    "featured": true,   // boolean attribute 
    "actors": [     // nested objects attribute 
    { 
     "name": "Walter White", 
     "portrayed_by": "Bryan Cranston" 
    }, 
    { 
     "name": "Skyler White", 
     "portrayed_by": "Anna Gunn" 
    } 
    ] 
} 

 Смежные вопросы

  • Нет связанных вопросов^_^