我正在尝试使用MarkLogic
将多个文档插入Rest-API
数据库。我想通过将特定属性指定为uri来在插入时自定义uri
。这是json文件:
{
"id" : "101",
"firstName" : "I",
"middle name" : "Love",
"last name : "Myself",
"emailId" : "aaa@gmail.com"
}
如果我想在插入记录时将json
的 emailId 属性指定为uri
。
现在有人能告诉我,如何实现它?
答案 0 :(得分:2)
初始化REST API服务器实例后,您specify document URI using the PUT command:
$ curl --anyauth --user user:password -X PUT -d@'./one.xml'\ -H“内容类型:application / xml”\ 'http://localhost:8000/LATEST/documents?uri=/xml/one.xml'