无法更改fileDownload.js jQuery插件的Content Type标头

时间:2015-12-11 22:48:05

标签: jquery jquery-plugins download

我正在使用名为fileDownload.js

的jQuery插件

我似乎无法将Content-Type标题更改为任何内容。 默认值为x-www-form-urlencoded

在我的快速服务器上,这是我从fileDownload.js

获得的唯一标头

以下是我的代码。

$.fileDownload(url, {
    httpMethod:'POST',
    'Content-Type': 'application/json; charset=utf-8',
    data: inputData,
    dataType: 'json',
    successCallback: function() {},
    failCallback: function() {}
});

除了默认x-www-form-urlencoded之外,我无法获得任何内容类型的任何想法?

1 个答案:

答案 0 :(得分:0)

通过查看来源找到答案。使用此插件您无法更改标题。相反,我解析了我想要的数据并将其放入网址。