Parse platform “内部查询”;“对象”;带解析的列

Parse platform “内部查询”;“对象”;带解析的列,parse-platform,parse-server,Parse Platform,Parse Server,有没有办法使用ParsePlatform(解析服务器)在对象列内部进行查询?目前,Javascript SDK以及REST API只允许查询模式列 默认情况下,这在Parse中是可能的,例如: curl -X GET \ -H "X-Parse-Application-Id: ${APPLICATION_ID}" \ -H "X-Parse-REST-API-Key: ${REST_API_KEY}" \ -G \ --data-urlencode 'where={"player

有没有办法使用ParsePlatform(解析服务器)在对象列内部进行查询?目前,Javascript SDK以及REST API只允许查询模式列

默认情况下,这在Parse中是可能的,例如:

curl -X GET \
  -H "X-Parse-Application-Id: ${APPLICATION_ID}" \
  -H "X-Parse-REST-API-Key: ${REST_API_KEY}" \
  -G \
  --data-urlencode 'where={"player.Name":"Sean Plott"' \
  https://api.parse.com/1/classes/GameScore

其中,
player
是字段名,
name
是存储在该字段行中的对象的键。

我不理解这个问题。你能举一个例子说明你想完成什么吗?@ArthurCinader显然使用REST API可以查询author.Name或author.About,其中“Name”和“About”都是存储在“author”字段中的对象键