博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JavaScript 跨域请求库 XDomain
阅读量:6095 次
发布时间:2019-06-20

本文共 981 字,大约阅读时间需要 3 分钟。

XDomain 详细介绍

XDomain 是 JavaScript CORS 跨域请求的一个替代产品,无需任何服务器端的配置。只需要在同域下放置一个 proxy.html 文件即可。该库利用 XHook 来获取所有 XHR,可以无缝的和其他库协同工作。

Features

  • Simple
  • Library Agnostic

    • With jQuery $.ajax (and subsequently $.get, $.post)
    • With Angular $http service
  • Cross domain XHR just magically works

    • No need to modify the server code
    • No need to use IE's silly XDomainRequest Object
  • Easy XHR access to file servers:

    • Amazon
    • Dropbox
  • Includes XHook and its features
  • proxy.html files (slaves) may:

    • White-list domains
    • White-list paths using regular expressions (e.g. only allow API calls: /^/api/)
  • Highly performant
  • Seamless integration with FormData

示例代码:

//do some vanilla XHRvar xhr = new XMLHttpRequest();xhr.open('GET', 'http://xyz.example.com/secret/file.txt');xhr.onreadystatechange = function(e) {  if(xhr.readyState === 4)    alert(xhr.responseText);};xhr.send();//or if we are using jQuery...$.get('http://xyz.example.com/secret/file.txt').done(function(data) {  console.log("got result: ", data);});

转载地址:http://fuzza.baihongyu.com/

你可能感兴趣的文章
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>
Qt Style Sheet实践(四):行文本编辑框QLineEdit及自动补全
查看>>
[物理学与PDEs]第3章习题1 只有一个非零分量的磁场
查看>>