如何从Promise中返回字符串

时间:2019-02-28 20:11:07

标签: javascript vue.js es6-promise

我正在vue网站上工作,我必须从服务器上使用axios获取图像并将其作为div的背景图像。情况是我有网址,但并非所有网址都是正确的。因此,我试图创建一个发出http请求的函数,如果该请求成功,则返回url。

我想到了这样的东西:

模板:

<div class="element" :style="bgImg(url)"/>

脚本:

methods: {
  bgImg(url) {
    axios.get(url)
      .then(response => {
        return `background-image: url(${response.config.url})`;
      })
      .cath(e) {
        throw new Error(e);
      }
  }
}

我期望从该函数返回url,但是什么也没发生。

4 个答案:

答案 0 :(得分:1)

您可以为此工作使用custom vue directive

Vue.directive('validate-bgimg', function (el, binding) {  
  el.style.backgroundImage = null  // reset 
  var url = binding.value
  if (!url) {
    return
  }
  axios.get(`https://cors-anywhere.herokuapp.com/${url}`)  // get around CORS limitations. Idealy you should call your own api to validate image urls
  .then(response => {
    if (response.status != 200) {
      console.warn("Invalide image url", url, response)
    } else {
      el.style.backgroundImage = `url(${url})`
    }
  })
  .catch(e => {
    console.error("Could not validate image", url, e)
  })
})


new Vue({
  el: "#app",
  data: {
  	imgUrl: undefined
  }
})
#app {
  background: lightgray;
  border-radius: 4px;
  padding: 20px;
  margin: 20px;
  transition: all 0.2s;
}

.element {
  margin: 8px 0;
  width: 200px;
  height: 200px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/0.18.0/axios.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>

<div id="app">
  <b>test case:</b>
  <button @click="imgUrl='https://dummyimage.com/200x200/000/fff.gif&text=test+1'">1</button>
  <button @click="imgUrl='https://dummyimage.com/200x200/000/fff.gif&text=test+2'">2</button>
  <button @click="imgUrl='https://dummyimage.com/200x200/000/fff.gif&text=test+3'">3</button>
  <button @click="imgUrl='https://httpbin.org/status/404'">HTTP 404</button>
  <button @click="imgUrl='https://httpbin.org/status/503'">HTTP 503</button>
  <button @click="imgUrl='https://invalid.tld'">cannot resolve domain name</button>
  
  <div class="element" v-validate-bgimg="imgUrl"/>
</div>

答案 1 :(得分:0)

You should use setAttribute method.

 //add id to the element
<div id="element" class="element" />

var url = url(${response.config.url});

// select the element using id and set image
document.getElementById("element").setAttribute("style", "background-image:"+ url); 

答案 2 :(得分:0)

您可以存储从响应对象中查找的数据以在promise之外使用,而不是从then()回调返回(该回调将把块的结果传递到下一个then())。 / p>

答案 3 :(得分:0)

使用计算值或临时值,这将使其更容易。

在此解决方案中,您将设置一个占位符图像以在加载时显示(或留空)。

然后使用mounted()钩子加载数据,然后分配给样式

模板:

<div class="element" :style="imgStyle"/>

脚本:

data:{
  return () => {
    imgStyle: {
       'background-image': 'url(my-placeholder.png)' // or not included at all
    }
  }
},
mounted() {
  axios.get(url)
    .then(response => {
      this.$set(this.imgStyle, 'background-image', `url(${response.config.url})`);
    })
    .cath(e) {
      throw new Error(e);
    }
}

请注意,请尽量避免使用模板中的函数来显示可以使用计算值完成的值。