将主键从 "id" 更改为 "any_other_key"


创建

rethinkdb 羽毛服务后,如何更改 RethinkDB 的主键?

我尝试了下面的代码,但它不会影响。

app.use('/messages', service({
  id: 'user_id',
  Model: db,
  name: 'messages'
}));

我错过了什么吗?

使用不同的主键时,RethinkDB 数据库需要使用相同的primaryKey选项进行初始化。您可以手动执行此操作,也可以使用此处所述的service.init

// Initialize the `messages` table with `user_id` as the primary key
app.service('messages').init({
  primaryKey: 'user_id'
}).then(() => {
  // Use service here
});

相关内容

  • 没有找到相关文章

最新更新