如何从保管箱获取图像并显示在网站上?

时间:2019-01-26 10:28:24

标签: arrays vue.js meteor

我基于流星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)
        })

不幸的是,它不起作用

0 个答案:

没有答案