我正在使用以下代码段将文件上传到Dropbox
dbx.filesUpload({path:"/"+file.name, contents:content})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.error(error);
});
这是按预期工作但第二次引发路径冲突错误,因为文件已经存在。如何在filesUpload()
?
答案 0 :(得分:0)
您可以指定'覆盖' FilesWriteMode
中的FilesCommitInfo
传递给filesUpload
,如下所示:
dbx.filesUpload({path:"/"+file.name, contents:content, mode:'overwrite'})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.error(error);
});