用 containedIn 查询一个Points类型的。
const os = regattaIds.map((objectId) => ({
"__type": "Pointer",
"className": "Regatta",
"objectId": objectId
}));
return query.containedIn('regatta', os);
这样也不行
const os = regattaIds.map((objectId) => AV.Object.createWithoutData('Regatta', id)));
return query.containedIn('regatta', os);
返回这个错误
{ Error: Malformed pointer. Pointers must be maps of a classname and an object id. [400 GET
咋解决?
JS SDK