使用curl命令删除cq节点属性

时间:2015-03-09 18:55:56

标签: curl cq5 aem

我想使用以下curl命令删除cq node属性,但它给出了404错误。但是,详细信息节点中存在“test”属性。

curl -X DELETE http://localhost:4502/content/test-content/en_US/marketing/data/establishing-multichannel/jcr:content/details/test -u admin:admin

任何指针都将受到高度赞赏。

1 个答案:

答案 0 :(得分:1)

尝试使用@Delete后缀发布属性名称。您不必为已发布的属性设置任何值:

curl -F test@Delete= \
     -u admin:admin \
     http://localhost:4502/content/test-content/en_US/marketing/data/establishing-multichannel/jcr:content/details

可以在Sling documentation找到更多信息。