所以我对 Horizon 有一个错误和两个问题。(http://horizon.io/docs/)我有一个简单的表和 1 记录里面,这是行:
id: "o34242-43251-462...",
user_id: "3lw5-6232s2...",
other_id: "531h51-51351..."
当我运行hz serve时,出现此错误:
意外的索引名称(无效字段): "hz_[["user_id"],[["other_id","0"]]]"。
好的,好的,无效字段...但是我没有找到有关“有效”字段的任何信息。有人知道答案吗?我能做些什么?
我的问题:
- 如何在 ubuntu 上“永远”运行 Horizon?现在我只使用 hz serve 和 "&",
如果我有几个查询,例如:
let table = this.horizon('firstTable'); let table2 = this.horizon('secondTable'); table.find(someId).fetch().subscribe((item) => { //and then I want to run other query, e.g: table2.find(item.id).fetch().subscribe((value) => { //and here again run other query... <-- how to avoid this? }); });
如何从 Horizon 的查询中返回一个值,然后在其他查询中使用这个值?我不想把它全部写在一个函数中......
谢谢你的帮助。