我基于流星vuejs和Dropbox版本4.0.15
我使用Dropbox API将图像上传到Dropbox,然后要获取图像以便在网站上显示。我该怎么做?
这是我到目前为止得到的:
dbx.filesListFolder({ path: path})
.then(function(response) {
dbx.filesGetTemporaryLink({
path: response.entries[0].path_lower,
})
.then(function(result) {
this.imgUrl = result
})
.catch(e => {
console.log(e)
})
})
.catch(function(error) {
console.log(error)
})
不幸的是,它不起作用