2

假设我有一个“类别”表,每个类别在“数据”表中都有关联数据,并且在其他“关联”表中有关联数据,我想删除一个包含所有关联数据的类别。我目前正在做的是这样的:

getAllDataIdsFromCategory()
        .then(removeAllAssociated)
        .then(handleChanges)
        .then(removeDatas)
        .then(handleChanges)
        .then(removeCategory)
        .then(handleChanges);

有没有办法在数据库端链接这些查询?我的功能目前看起来像这样:

var getAllDataIdsFromCategory = () => {
        return r
            .table('data')
            .getAll(categoryId, { index: 'categoryId' })
            .pluck('id').map(r.row('id')).run();
    }

var removeAllAssociated = (_dataIds: string[]) => {
        dataIds = _dataIds;
        return r
            .table('associated')
            .getAll(dataIds, { index: 'dataId' })
            .delete()
            .run()
    }

var removeDatas = () => {
        return r
            .table('data')
            .getAll(dataIds)
            .delete()
            .run()
    }

请注意,我不能使用 r.expr() 或 r.do() 因为我想根据前一个查询的结果进行查询。我的方法的问题在于它不适用于大量“数据”,因为我必须将所有 id 带到客户端,并且在客户端循环为它进行分页似乎是一种解决方法。

4

1 回答 1

5

您可以forEach为此使用:

r.table('data').getAll(categoryID, {index: 'categoryId'})('id').forEach(function(id) {
  return r.table('associated').getAll(id, {index: 'dataId'}).delete().merge(
    r.table('data').get(id).delete())
});
于 2015-08-08T22:56:48.417 回答