使用 JPlayer 自定义 HTTP 标头

发布于 2025-01-01 06:59:09 字数 155 浏览 0 评论 0原文

我们正在使用 jplayer (www.jplayer.org) 在我们的系统上播放一些流媒体。

但是,某些流媒体 HTTP 请求需要自定义 HTTP 标头。

有没有办法使用 JPlayer 手动设置 HTTP 标头?

问候

和过去

We are using jplayer (www.jplayer.org) to play some stream media on our system.

But, some HTTP requests for stream media requires custom HTTP headers.

There's a way to set manually HTTP Headers using JPlayer?

Regards,

And Past

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

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

发布评论

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

评论(1

凡尘雨 2025-01-08 06:59:09

您应该在 ajax() 函数上使用 headers 选项。

来自 jQuery 文档...

标题(已添加 1.5)
默认值:{}
与一起发送的附加标头键/值对的映射
要求。该设置是在调用beforeSend函数之前设置的;
因此,标题设置中的任何值都可以被覆盖
在 beforeSend 函数中。

这是一个示例:

$.ajax({
  url : "/script.php",
  type : "GET",
  headers: {
    "MyCustomHeader" : "Custom header value"
  }
});

You should use the headers option on the ajax() function.

From the jQuery Docs...

Headers (added 1.5)
Default: {}
A map of additional header key/value pairs to send along with the
request. This setting is set before the beforeSend function is called;
therefore, any values in the headers setting can be overwritten from
within the beforeSend function.

Here's an example of how this would look...

$.ajax({
  url : "/script.php",
  type : "GET",
  headers: {
    "MyCustomHeader" : "Custom header value"
  }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文