博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
JSONP
阅读量:6714 次
发布时间:2019-06-25

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

hot3.png

Use XMLHttpRequest when your HTML and JavaScript are hosted on the same machine as your data.

Use JSONP when you need to access data hosted by a web service on a remote server (assuming that web service supports JSONP). A web service is a web API that is accessed by HTTP.

JSONP is a method of retrieving data by using the <script> element.

JSONP is JSON data wrapped in JavaScript; typically, a function call.

The function call that wraps the JSON data in JSONP is referred to as a “callback.”

script injection

force the browser to make the request

watch out for the dreaded browser cache

var url += "&random=" + (new Date()).getTime();

转载于:https://my.oschina.net/rickliu/blog/224764

你可能感兴趣的文章
开源大数据周刊-第6期
查看>>
centos上一键安装jdk、tomcat脚本
查看>>
排序算法 时间、空间复杂度
查看>>
flex容器主轴上的部分元素单独设置位置
查看>>
window10安装Ubuntu虚拟机踩坑系列
查看>>
JavaScript倒计时
查看>>
ArrayList源码分析
查看>>
golang后端库gin笔记
查看>>
Vuex源码学习(四)module与moduleCollection
查看>>
【OC梳理】description
查看>>
张家口a货翡翠,梧州a货翡翠
查看>>
JS Object的静态方法汇总( 上 )
查看>>
java B2B2C Springcloud多租户电子商城系统-Eureka服务端与客户端常用配置
查看>>
jvm疯狂吞占内存,罪魁祸首是谁?
查看>>
表格存储Tablestore权威指南(持续更新)
查看>>
java B2B2C源码电子商城系统-Kafka快速入门
查看>>
Spring Cloud云服务 - HongHu架构common-service 项目构建过程
查看>>
hadoop中hive原理及安装
查看>>
pear默认安装后一个小bug
查看>>
nginx-通过Nginx统计当前每个域名流量
查看>>