即使指定了数据库名称,rethinkdb Web 界面错误查找其他数据库

rethinkdb web interface error looking for other database even a database name has been specified

我正在尝试通过 rethinkdb Web 界面将来自特定数据库的父 ID 连接到子行名称 'users_id' 的两个表,下面是我尝试过的方法

r.db('cn_chat').table('chat_que').eqJoin('users_id', r.table('connections'));

下面是web界面给出的错误

预期的数据库必须是 'cn_chat',但 Web 界面似乎在寻找确实存在但不是正确数据库的测试数据库。有什么帮助,想法吗?

报错提示很好:"test.connection"不存在 当您默认使用 r.table("connection") 时,它会尝试连接到名为“test”的数据库,但您的 table 在“cn_chat" 我假设。

尝试以下操作:

r.db('cn_chat').table('chat_que').eqJoin('users_id', r.db('cn_chat').table('connections'));