我过去使用过 mongodb,我想使用类似的模式。我尝试使用 PHP 驱动程序创建它,但它没有按我预期的那样工作。所以我的猜测是 rethinkdb 不支持它或者 php 驱动程序无法做到这一点。
r\table('User')->insert([
'username' => 'Something',
'skills' => [
'php' => 10,
'html' => 15
]
])->run($conn)
导致 RethinkDB 管理员 js 客户端:
{
"username": "Something" ,
"id": "899a2693-dd94-4670-a496-05626a88d190" ,
"skills": { }
}
你有什么建议,我应该怎么做?