🎨 Database block support specified view https://github.com/siyuan-note/siyuan/issues/10443

This commit is contained in:
Daniel
2024-03-04 16:41:41 +08:00
parent d519732c79
commit e3d282ac90
5 changed files with 102 additions and 46 deletions

View File

@@ -43,8 +43,8 @@ func exportAttributeView(c *gin.Context) {
}
avID := arg["id"].(string)
viewID := arg["viewID"].(string)
zipPath, err := model.ExportAv2CSV(avID, viewID)
blockID := arg["blockID"].(string)
zipPath, err := model.ExportAv2CSV(avID, blockID)
if nil != err {
ret.Code = 1
ret.Msg = err.Error()