知识巩固——跨域,http与https

Posted HHLweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了知识巩固——跨域,http与https相关的知识,希望对你有一定的参考价值。

jsonp

  仅支持get请求,不支持post,因为实践中没用到过,真的不知道啊

  用法估计:服务器,比如js文件user(‘soc‘);

       客户端  html引用了上面的js  比如www.xx.com/user.js    并在此html有函数

        function user(name){  console.log(name);  } 

一般都是后端设置请求头的啊,java/php/node.js都是啊

  php——header("Access-Control-Allow-Origin: http://a.com"); 

  node——express

app.all(‘*‘, function(req, res, next) {
    res.header("Access-Control-Allow-Origin", "*");
    res.header("Access-Control-Allow-Headers", "X-Requested-With");
    res.header("Access-Control-Allow-Methods","PUT,POST,GET,DELETE,OPTIONS");
    res.header("X-Powered-By",‘ 3.2.1‘);
    res.header("Content-Type", "application/json;charset=utf-8");
    next();
});

  java——...........................................

flash

iframe

h5 postmessage

 

以上是关于知识巩固——跨域,http与https的主要内容,如果未能解决你的问题,请参考以下文章

「offer来了」浏览器原理被问懵?5大知识板块巩固你的http知识体系(3.6w字)

「offer来了」浏览器原理被问懵?5大知识板块巩固你的http知识体系(3.6w字)

HTTP知识体系汇总

filter知识巩固 补漏

网络协议知识点汇总,巩固你的 HTTP 知识体系

跨域访问方法介绍--使用片段识别符传值