Bootstrap 图片中的 Vue onerror 事件
Bootstrap Vue onerror event in image
如何在 Bootstrap Vue 的 b-card
中使用 @onerror 事件?
我想处理图片的404,以便显示默认图片。
<b-card overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2">
</b-card>
好吧,这个组件似乎没有提供这个特定的事件处理程序(在撰写本文时),但是您可以在组件上添加一个 ref
并在 [=15= 上注册错误处理程序] 挂钩:
<b-card overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2"
ref="card">
</b-card>
new Vue({
el: '#app',
mounted() {
this.$refs.card.querySelector('img').onerror = this.handleImgError;
},
methods: {
handleImgError(evt) {
// event has all the error info you will need
// evt.type = 'error';
}
}
});
或者实际上,创建一个包装器组件提供一个。
./components/Card.vue
<template>
<b-card
overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2">
</b-card>
</template>
<script>
import bCard from "bootstrap-vue/es/components/card/card";
export default {
name: "Card",
mounted() {
this.$el.querySelector("img").onerror = e => {
this.$emit('onerror', e);
};
},
components: {
bCard
}
};
</script>
index.html
<div id="app">
<card @onerror="handleImgError"></card>
</div>
我建议将 <b-img-lazy>
组件放置在带有 no-body
属性集的 <b-card>
中。
<b-card no-body>
<b-img-lazy class="card-img-top" src="...." @error.native="onError" />
<b-card-body :title="name" :sub-title="description">
Card Text
</b-card-body>
</b-card>
有关上述组件的参考,请参阅:
如何在 Bootstrap Vue 的 b-card
中使用 @onerror 事件?
我想处理图片的404,以便显示默认图片。
<b-card overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2">
</b-card>
好吧,这个组件似乎没有提供这个特定的事件处理程序(在撰写本文时),但是您可以在组件上添加一个 ref
并在 [=15= 上注册错误处理程序] 挂钩:
<b-card overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2"
ref="card">
</b-card>
new Vue({
el: '#app',
mounted() {
this.$refs.card.querySelector('img').onerror = this.handleImgError;
},
methods: {
handleImgError(evt) {
// event has all the error info you will need
// evt.type = 'error';
}
}
});
或者实际上,创建一个包装器组件提供一个。
./components/Card.vue
<template>
<b-card
overlay
:title="name"
:sub-title="description"
:img-src="cardImg"
img-top
style="max-width: 20rem;"
class="mb-2">
</b-card>
</template>
<script>
import bCard from "bootstrap-vue/es/components/card/card";
export default {
name: "Card",
mounted() {
this.$el.querySelector("img").onerror = e => {
this.$emit('onerror', e);
};
},
components: {
bCard
}
};
</script>
index.html
<div id="app">
<card @onerror="handleImgError"></card>
</div>
我建议将 <b-img-lazy>
组件放置在带有 no-body
属性集的 <b-card>
中。
<b-card no-body>
<b-img-lazy class="card-img-top" src="...." @error.native="onError" />
<b-card-body :title="name" :sub-title="description">
Card Text
</b-card-body>
</b-card>
有关上述组件的参考,请参阅: