jQuery Ajax标头没有被传递

时间:2015-04-10 02:37:46

标签: javascript jquery ajax request-headers

我想向带有几个自定义标头的服务发送AJAX调用。请求成功完成后,标头不会被发送。以下是我的代码片段:

func123: function (params) {
        return $.ajax({
            url: "http://localhost:8080/",
            type: 'GET',
            headers: {
                "Contract": "1",
                "Vector": "abc",
                "Authorization": "xyz"
            },
            dataType: 'json',
            contentType: 'application/json'
        });
    },

0 个答案:

没有答案