获取到多条数据如何使用 this.$notify
时间: 2023-12-25 17:06:29 浏览: 121
如果你使用的是 Vue.js 框架,并且想要在页面中显示多条通知消息,你可以使用 `v-for` 指令来循环遍历消息列表,并在每个消息上使用 `this.$notify` 方法来显示通知。具体的代码可以参考以下示例:
```html
<template>
<div>
<div v-for="message in messageList" :key="message.id">
{{ message.content }}
</div>
</div>
</template>
<script>
export default {
data() {
return {
messageList: [
{ id: 1, content: '这是第一条消息' },
{ id: 2, content: '这是第二条消息' },
{ id: 3, content: '这是第三条消息' },
]
}
},
methods: {
showNotification(message) {
this.$notify({
title: '新消息',
message: message.content,
type: 'info',
duration: 5000
});
}
},
mounted() {
this.messageList.forEach(message => {
this.showNotification(message);
})
}
}
</script>
```
在上面的代码中,我们首先定义了一个 `messageList` 数组来存储多条消息数据。在 `mounted` 钩子函数中,我们遍历 `messageList` 数组,并在每个消息上调用 `showNotification` 方法来显示通知。在 `showNotification` 方法中,我们使用 `this.$notify` 方法来创建一个通知,并将消息内容作为通知的消息内容。最后,我们将通知的持续时间设置为 5 秒钟。
希望这个例子可以帮助你解决问题!
阅读全文