我在本地设备上有一个文件。我想将此文件上传到 Dropbox。几乎一切都完成了,但我无法弄清楚contents
对象属性的值应该是什么?我正在使用cordova file plugin
获取文件 url 和 Dropbox SDK 进行上传。这是代码。假设我想上传 MP3 或 ZIP 文件...
let dbx = new Dropbox({ clientId: CLIENT_ID })
dbx.filesUpload({
path: "/" + fileName,
contents: XXXXXXXX, // what should be the value of this?
mode: "overwrite",
mute: true,
autorename: false,
strict_conflict: false
})
.then(response => {
// do something with success
})
.catch(error => {
// do something with error
})