在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.
});