我正在使用反应FineUploaderS3,与params:
this.myUploader = new FineUploaderS3({
options: {
request: {
endpoint: "endpoint",
accessKey: "accessKey",
params: {
Authorization: 'authorization'
}
},
chunking: {
enabled: true,
},
resume: {
enabled: true
},
signature: {
endpoint: "signatureUrl",
},
iframeSupport: {
localBlankPagePath: null
},
params: {
Authorization: 'authorization'
}
}
});
当我检查OPTION请求时,没有授权参数。如何添加?看来好的上传者目前没有支持吗?
谢谢!
FineUploaderS3中没有这样的选项。它不应该是,根据w3 OPTION不应该包含用户凭据,授权参数。