将acl设置为public-read时,如何在signePolicy中设置Cache-Control |谷歌存储

时间:2019-06-08 12:53:23

标签: node.js google-cloud-storage

在Google存储中生成签名策略时如何设置缓存控件?

查看了src,但没有找到设置方法。

以下是我拥有的代码段:

const options = {
  acl:'public-read',
  CacheControl:'no-cache',// doesnt work
  expires: (new Date).getTime() + 30*1000,      
};

file.getSignedPolicy(options, function(err, policy) {
  // policy.string: the policy document in plain text.
  // policy.base64: the policy document in base64.
  // policy.signature: the policy signature in base64.
});

0 个答案:

没有答案