Cloudant数据库 - 组织数据列

时间:2018-06-07 17:29:36

标签: cloudant

我使用cloudant NoSQL数据库来存储历史数据。我希望数据列中的属性位于单独的列中。请帮忙!

Data in the database

1 个答案:

答案 0 :(得分:0)

您的数据看起来像这种形式:

{
  d: {
    id: 'xyz',
    ts: 123,
    ax: 'abc'
  }
}

Cloudant的网格视图仅渲染对象树顶部的键。如果你存储了这样的数据:

{
  id: 'xyz',
  ts: 123,
  ax: 'abc'
}

然后网格视图会在自己的列中显示id / ts / ax。