使用XMLHttpRequest发布文件以及post参数

时间:2013-12-03 13:02:22

标签: javascript asp.net ajax

我搜索谷歌后如何发送帖子到ashx页面同时使用这两个文件(用于上传)和一些帖子参数,如文件名称

XMLHttpRequest send(...)方法接受datafile / string,我需要同时调用

有可能吗?

我使用ajax来执行此调用。

TNX。

1 个答案:

答案 0 :(得分:0)

试试这个:

var xhr = new XMLHttpRequest();
xhr.open('post', url, true);
xhr.setRequestHeader("Content-Type","multipart/form-data");

var formData = new FormData();
formData.append("thefile", file);
formData.append('stringParam',param1);
xhr.send(formData);