enter image description here点击附件时在自定义数据列表中添加新项目时选择按钮,我想在客户端而不是从服务器端添加Windows资源管理器中的文件。
abve图像是从服务器添加附件我不希望这样,我想在客户端PC中添加来自Windows资源管理器的文件。
答案 0 :(得分:1)
Alfresco 5.1 :POST /alfresco/service/api/upload
。在此版本中,new REST API不包含节点方法。
Alfresco 5.2 EA :新的REST端点POST /nodes/{nodeId}/children
,支持使用multipart / form-data上传文件。
curl -X POST
--header 'Content-Type: application/json'
--header 'Accept: application/json'
--header 'Authorization: Basic YWRtaW46YWRtaW4='
-d '{"name":"my-new-file"}'
'http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/nodes/parent-node-id/children'