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

跨域问题-jsonp

时间:2018-09-03 19:26:57      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:分享图片   title   back   server   问题   lang   style   UNC   jquery   

前端
同源策略并不会拦截静态资源请求,那么就将接口伪装成资源,然后后端配合返回一个前端预定义的方法调用,将返回值放入调用该函数的形参即可

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script>
        //前端预定义
        function getName(rep){
            document.write(rep.name)
            console.log(rep)
        }
    </script>
</head>
<body>
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
    <script src="http://localhost:8082?callback=getName"></script>
</body>
</html>

 

后端
后端以node为例,其他语言大同小异

var http = require("http");
const url = require("url");
http.createServer(function (request, response) {
    let params = url.parse(request.url,true);
    response.end(params.query.callback + `(${JSON.stringify({name:"abc"})})`);
}).listen(8082);

 

效果
技术分享图片

技术分享图片

技术分享图片

 

补充
当然了,如果你觉得麻烦,你可以用jq的jsonp或者其他封装ajax支持jsonp的插件,效果一样

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>
    <script>
        let url=http://localhost:8082?callback=getName;
        $.ajax({
            url: url,
            type: "get",
            dataType: "jsonp",
            jsonpCallback: "getName",
            success: function (rep) {
                document.write(rep.name)
                console.log(rep)

            }
        })
    </script>
</head>
<body></body>
</html>

 

 

 




跨域问题-jsonp

标签:分享图片   title   back   server   问题   lang   style   UNC   jquery   

原文地址:https://www.cnblogs.com/dshvv/p/9580036.html

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