是否可以对 ICS 文件执行 Ajax 请求?
我正在尝试对 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,您无法通过 .ajax() 从另一个域加载内容。
To the best of my knowledge, you can't load content from another domain through .ajax().
尝试使用数据类型:“文本”。如果您不会成功,请尝试使用 dataFilter(data, type) 函数。
try with dataType: "text". It you will have no success then try usage of dataFilter(data, type) function.