码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2017-07-21 15:35:55      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:跨域   res   charset   div   bsp   nbsp   console   color   json   

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

标签:跨域   res   charset   div   bsp   nbsp   console   color   json   

原文地址:http://www.cnblogs.com/hhweb/p/7217515.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!