是否可以对 ICS 文件执行 Ajax 请求?

发布于 2024-09-01 08:00:33 字数 357 浏览 6 评论 0原文

我正在尝试对 ICS 文件执行 Ajax 请求。是的,我知道这听起来很疯狂,但我找到了解析 iCal 数据的完美库。有什么想法为什么当我这样做时数据会显示为空白吗?

$.ajax({
 success:function(data){
  alert(data);
 },
 url:"http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=15714&cat=98&platform=osx&method=sa/Swiss32Holidays.ics"
});

它使请求正常,但数据仍然显示为空白。

** 是否是数据类型错误?

I am trying to do an Ajax request for an ICS file. Yeah, I know it sounds crazy, but I found the perfect library to parse the iCal data. Any ideas why the data comes up blank when I do this?

$.ajax({
 success:function(data){
  alert(data);
 },
 url:"http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=15714&cat=98&platform=osx&method=sa/Swiss32Holidays.ics"
});

It makes the request fine, but the data still comes up blank.

** Is it a datatype error?

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

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

发布评论

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

评论(2

孤者何惧 2024-09-08 08:00:33

据我所知,您无法通过 .ajax() 从另一个域加载内容。

To the best of my knowledge, you can't load content from another domain through .ajax().

栀子花开つ 2024-09-08 08:00:33

尝试使用数据类型:“文本”。如果您不会成功,请尝试使用 dataFilter(data, type) 函数。

try with dataType: "text". It you will have no success then try usage of dataFilter(data, type) function.

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