如何使用rest api在marklogic中将文档的属性指定为uri

时间:2016-06-13 15:00:03

标签: marklogic marklogic-8 marklogic-7

我正在尝试使用MarkLogic将多个文档插入Rest-API数据库。我想通过将特定属性指定为uri来在插入时自定义uri。这是json文件:

{
    "id" : "101",
    "firstName" : "I",
    "middle name" : "Love",
    "last name : "Myself",
    "emailId" : "aaa@gmail.com" 
}

如果我想在插入记录时将json emailId 属性指定为uri。 现在有人能告诉我,如何实现它?

1 个答案:

答案 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'