Rethinkdb按行号数组从选择/序列中选择多行

时间:2016-08-01 13:00:03

标签: rethinkdb rethinkdb-javascript

对于给定的序列,我如何获取某些行号(索引)的行。 我知道nth()可以选择第n个索引。但是,如果我想按索引选择多行呢?

r.expr([0, 10, 20, 30, 40, 50]).nth(3)    // gives 30

以上作品。但是,我如何得到以下内容?

r.expr([0, 10, 20, 30, 40, 50]).nth([3, 5, 2])    // gives [30, 50, 20]

1 个答案:

答案 0 :(得分:0)

使用切片可能会更好:

  

selection.slice(startOffset [,endOffset,{leftBound:'关闭',右边:'打开'}])→选择

文档为here.