举例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()
})
}