使用 jQuery 表单插件时设置标题

发布于 2024-12-07 08:34:14 字数 420 浏览 0 评论 0原文

我正在使用 JQuery 表单插件,但我不确定如何设置标题。

我希望能够完成这样的事情:

$.ajax({
                url: "/url",
                data: post,
                type: "POST",
                beforeSend: function(jqXHR) {
                    jqXHR.setRequestHeader("foo", "bar"); 
                },
})

但是 beforeSubmit 事件不会传递 jqXHR 对象进行操作。有什么想法吗?

I'm using JQuery Form Plugin and I'm not sure how to set headers.

I want to be able accomplish something like this:

$.ajax({
                url: "/url",
                data: post,
                type: "POST",
                beforeSend: function(jqXHR) {
                    jqXHR.setRequestHeader("foo", "bar"); 
                },
})

but the beforeSubmit event dosn't pass the jqXHR object for manipulation. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

娇妻 2024-12-14 08:34:14

以下代码对我有用。

$('#myForm').ajaxSubmit({
    headers: {
        "foo": "bar"
    }
});

The following code works for me.

$('#myForm').ajaxSubmit({
    headers: {
        "foo": "bar"
    }
});
愿与i 2024-12-14 08:34:14

事实证明,您发送到表单插件的 选项对象 实际上传递了选项到 $.ajax 方法。因此,您可以使用本机的 before send 功能。

As it turns out, the options object you send to the form plugin actually passes the options to the $.ajax method. Therefore you can use the native before send function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文