main
wuyize 2023-07-07 04:58:51 +08:00
parent 8c37bca675
commit 8044edca44
1 changed files with 6 additions and 1 deletions

View File

@ -256,11 +256,16 @@ FluArea {
iconSource: content_page.isFavorite ? FluentIcons.FavoriteStarFill : FluentIcons.FavoriteStar
onClicked: {
content_page.isFavorite = !content_page.isFavorite
console.log(content_page.isFavorite)
content_page.favoriteCount += (content_page.isFavorite ? 1 : -1)
Request.put("knowledge/" + knowledgeFileId + "/star",
JSON.stringify({
"active": content_page.isFavorite
}))
}), response => {
console.log(response)
}, response => {
console.log(response)
})
}
}
FluText {