我试图更新在ObjectStorage中创建的目录的元数据。成功创建目录后,Content-Type就是' application / directory'。但是,当我尝试更新目录时,Content-Type更改为' application / x-www-form-urlencoded'。 这是我的代码片段: -
//Create folder
$rst = $objectStorage->with('/container1/folder1')
->setHeader('Content-type', 'application/directory')
->create();
//Update folder's metadata
$rst = $objectStorage->with('/container1/folder1')
->setMeta('bytes-used', 100)
->setHeader('Content-type', 'application/directory')
->create();
如果有任何错过,请提供建议,谢谢
答案 0 :(得分:0)
您是如何检查内容类型更改的?
您能提供您正在使用的代码或您遵循的步骤吗?因为我确认“Content-Type”保留在:
内容类型:应用程序/目录