函数function的{}和return的含义

发布时间:2023年12月28日

举例filter(保留等于他的值) return和return的情景

1、不需要return的时候,判断语句较为单一, 可以省去{}花括号,直接写即可,底层会做处理

const commentListDelet = (val) => {
  commentList.value = commentList.value.filter((i) => i.id != val.id)
  deleteWorkCommentApi([val.id]).then((res) => {
    console.log(res)
    //getList()
  })
}

2、需要return 的时候,写了大括号必须要return

//评论的删除
const commentListDelet = (val) => {
  commentList.value = commentList.value.filter((i) => {
    return i.id != val.id
  })
  deleteWorkCommentApi([val.id]).then((res) => {
    console.log(res)
    //getList()
  })
}

文章来源:https://blog.csdn.net/SYQ15544423296/article/details/135262558
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。