dongyan2445 2019-04-22 03:36
浏览 105

如何在没有提交的情况下选择excel文件后使用ajax显示excel读取文件?

How can i display excel read file using ajax after choosing an excel file without submit?

what i wanted to do is to display all data's inside the excel after choosing an excel file on input file without submitting any button, the datas inside it should automatically display in a certain div.

var file = new FormData();

file.append('file', $('#file').prop('files')[0]);

$.ajax({
  type: "POST",
  processData: false, // important 
  contentType: false, // important 
  url: 'get_excel.php',
  data: file,
  success: function (data) {

  }
});

here is my code on getting data of excel file.

  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥20 西门子S7-Graph,S7-300,梯形图
    • ¥50 用易语言http 访问不了网页
    • ¥50 safari浏览器fetch提交数据后数据丢失问题
    • ¥15 matlab不知道怎么改,求解答!!
    • ¥15 永磁直线电机的电流环pi调不出来
    • ¥15 用stata实现聚类的代码
    • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
    • ¥20 docker里部署springboot项目,访问不到扬声器
    • ¥15 netty整合springboot之后自动重连失效
    • ¥15 悬赏!微信开发者工具报错,求帮改