Nativescript vue图像未显示

时间:2019-04-26 00:53:06

标签: vue.js nativescript

为什么我的图像不炫耀?

标签正确显示了网址,但未显示图片。 为什么不显示?需要添加一些东西吗? 以前在工作。 如果我添加了带有src纯文本的普通图像,则显示为

  <StackLayout>
    <Button text="Make new screensot" />  
    <Button text="Load images" @tap="loadImages()" />
    <Label v-if="!loadedImages" text="Not loaded images" textWrap="true" />


     <RadListView v-else for="(item,index) in imagesS"
               itemHeight="100">
    <v-template>
      <StackLayout orientation="vertical">
        <Label :text="item.url"></Label>
        <Image :src="item.url" stretch="aspectFill" class="screenshots" />
      </StackLayout>
    </v-template>
  </RadListView>

   <ActivityIndicator class="activity-indicator" :busy="indicatorS"></ActivityIndicator>



  </StackLayout>

我添加了CSS,但也无法正常工作

 .screenshots{
    height:100;
    width:100;
  }

方法

methods: {

  loadImages() {
    console.log('starting loading images');
     this.indicatorS = true;
    axios.get(this.jsonUsers + this.ID + '/images')
    .then((response) => {

          const imgCount = response.data.length;
          console.log("count- " + imgCount)

          var imagesArr = response.data;

          console.dir("images - " + response.data[0].url)


          this.$store.commit('setImages',imagesArr);
          console.log('images fully loaded');  
          this.$store.commit('setLoadedImages');
          this.indicatorS = false;

    })

  } 

 }

app

1 个答案:

答案 0 :(得分:1)

我在操场上尝试过。 https://play.nativescript.org/?template=play-vue&id=aKZ2wm

我认为您使用的URL并非真正用于图像。https://imgur.com/a/AkEg8vy这就是您正在使用的URL,不是图像的URL,而是网页的URL。

现在,如果我转到页面并获取图像URL https://i.imgur.com/78j1SJr.jpg。一切正常。