Parse.com没有从表中返回数据?

时间:2015-11-30 07:36:15

标签: parse-platform

我想查询解析集合中表格中的数据。

这是我的代码

mysql --user=user_name --password=your_password db_name

但我只得到数据的id而不是像这样的内容

enter image description here

这是我班上的一些数据

enter image description here

那我怎样才能得到其余的数据?

谢谢!

1 个答案:

答案 0 :(得分:1)

试试这个以获取内容: 基本上,如果要从parse对象访问数据,则数据将与属性和元素名称一起存储

  EX如下:

     

获得MF:

results[0].attributes.MF

  

获取id:

results[0].id

  

得到五个人:

results[0].attributes.fiveHundred

相关问题