跨域問題-jsonp

來源:互聯網
上載者:User

標籤:分享圖片   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

相關關鍵詞:
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.