The excel file exported by vue cannot be opened, or the file content is object object

Requirements: Select data to export to excel
Problem: The file export cannot be opened at first, but later it can be opened and the file content displays object.

After writing according to the normal export process, the backend interface returns

Insert image description here

Print the result of res

Insert image description here

Front-end code (before modification)

Insert image description here

Error in exporting file as a result

Insert image description here

After some troubleshooting, I found that I made a mistake in passing the value.

Insert image description here

What we want is res.data, not res

Modified front-end code

Insert image description here

The exported result will be correct.

Insert image description here

Guess you like

Origin blog.csdn.net/weixin_48300785/article/details/125487232