const unread = ref([]) const getUnRead = () => { request.get('/messages/unread').then(res => { unread.value = res.data }) }
时间: 2024-02-16 18:02:22 浏览: 87
这段代码使用了 Vue 3 的 Composition API,其中使用了 ref 函数创建一个响应式变量 unread,并将其初始化为空数组。另外,定义了一个函数 getUnRead,用于获取未读消息,并将获取到的数据赋值给 unread 变量。
在这段代码中,使用了 request.get 方法发送 HTTP GET 请求,请求的地址为 '/messages/unread',并将获取到的数据赋值给 unread 变量。这意味着,当执行 getUnRead 函数时,如果请求成功,unread 变量的值将被更新为最新的未读消息列表。
阅读全文