英文:
How to export a excel template file using golang and Go-echo?
问题
我需要将一个特定模板的 Excel 文件导出,并将其作为行导入到 PostgreSQL 中。我不知道如何使用 go-echo 和 gorm 来实现这一点。有人可以告诉我如何做吗?
英文:
I need to export a excel file of a specific template and import it back to insert into postgres as rows.
I don't know how to do this using go-echo and gorm.
Can someone tell me how i can do that?
答案1
得分: 0
首先,阅读Excel数据,然后将数据映射到结构体,最后通过gorm将其写入PostgreSQL。我不知道go-echo在这里的作用是什么。
英文:
First read the Excel data, then map the data to Struct, and finally write it to PostgreSQL through gorm,I don't know what go-echo does here
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论