我对vuejs完全陌生,所以我做错了事,但看不到
我有一种获取图片网址的方法
getImage(url) {
url = url.replace(/^http:\/\//i, 'https://');
this.$http.get(`${url}api`).then((response) => {
return response;
}).catch( error => { console.log(error); });
}
然后我尝试将其显示在模板上,例如:
<img :src="getImageForInstance(service)" class="pull-left">
但是什么也没发生,我看不到任何图像。
我该如何解决?