如何使用AQL将数据分组到ArangoDB中?例如,我的结构是:
[
{name: "karl", id: "1", timestamp: "11112"},
{name: "migele", id": "2", timestamp: "11114"},
{name: "martina", id": "2", timestamp: "11116"},
{name: "olivia", id": "3", timestamp: "11118"},
{name: "sasha", id": "4", timestamp: "111120"},
]
Run Code Online (Sandbox Code Playgroud)
我想接收具有唯一ID和实际时间戳的数据:
{
karl,
martina (because martina timestamp > migele timestamp and his ids is equals),
olivia,
sasha
}
Run Code Online (Sandbox Code Playgroud) 我从这里下载了boostrap.min.css版本.但在控制台中它向我展示了很多错误.检查图像:
我使用mozilla firefox最新.奇怪的是,在Chrome中我没有这些错误.有没有办法从boostrap解决这个错误或至少隐藏它?第一个错误出现在这里:
background-image: -webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);
background-image: -o-linear-gradient(top,#fff 0,#e0e0e0 100%);
background-image: -webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));
background-image: linear-gradient(to bottom,#fff 0,#e0e0e0 100%);
Run Code Online (Sandbox Code Playgroud)
但我不知道这有什么问题.