我推送到 algolia 的记录显示为字符串,但它在我的本地数据库中是一个整数。
user4490379
问问题
59 次
1 回答
1
好吧,您没有输入任何代码,所以我认为您的错误在这里:Algolia 是无模式的。您必须 按照此页面中的说明进行操作:
{
"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"
}
]
}
于 2016-02-01T13:04:51.800 回答