Use img stepped pit in records vue

 

The acquired data is no problem, bound to the img's no problem, but can not show pictures and reported 403 error message:

<li  v-for="item in price" @click="remoteid(item.id)" :key="item.id" :id="item.id">
  <img class="selection-img" :src="item.cover" alt="img" />
  <div class="selection-name">
    {{ item.name }}
  </div>
</li>

Solution: add the following code to the head pubilc index.html file in the folder:

<meta name="referrer" content="no-referrer" />

The reason: the result of Baidu is the people's security Web site to do

Guess you like

Origin www.cnblogs.com/lljun/p/12362091.html