Use jQuery to send Excel data using AJAX

前端 未结 4 543
既然无缘
既然无缘 2020-12-13 18:13

I have the following function that is pulling data from a database. The ajax call is working correctly. How can I send the tab delimited data in my success function to the

4条回答
  •  無奈伤痛
    2020-12-13 18:45

    AJAX is... the wrong choice. Redirect the user to a server resource that will send the data down with the proper MIME type, and let the browser figure out what to do with it.

提交回复
热议问题