91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

JSONP跨域請求的示例分析

發布時間:2020-12-07 13:49:25 來源:億速云 閱讀:121 作者:小新 欄目:web開發

這篇文章主要介紹了JSONP跨域請求的示例分析,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

維基百科的解釋:

JSONP (JSON with Padding or JSON-P[1]) is a javascript pattern to request data by loading a <script> tag. It was proposed by Bob Ippolito in 2005.[2] JSONP enables sharing of data bypassing same-origin policy. The policy disallows running JavaScript to read media DOM elements or XHR data fetched from outside the page's origin. The aggregation of the site's scheme, port number and host name identifies as its origin.

我的理解是:

1、前端編寫自己的函數,用script標簽發送get請求把函數名字帶上
2、服務器端接送到請求后獲取前端發送請求時的query,添加上自己的數據返回后。
3.、前端獲取返回的內容其實就自己的函數調用實參是數據對象。

  • 解釋的有點懵逼沒關系,用栗子說話。

前端代碼

<!doctype html>
<html lang="en">
<head>
    <title>Document</title>
</head>
<body>
<script>
    //編寫調用函數
    function getremotedata(data) {
        console.log(data);
    }
</script>
<!--用script標簽get方法把數據請求發送到后端-->
<script src="http://localhost:3999/?callback=getremotedata"></script>
</body>
</html>

后端代碼

//用node編寫一個簡單的服務器
const http = require('http');
const urlModule = require('url');
const server = http.createServer();
server.on('request', function (req, res) {
    //urlModule.parse(req.url.url)的請求 就是這個對象
    // {
    //   protocol: null,
    //   slashes: null,
    //   auth: null,
    //   host: null,
    //   port: null,
    //   hostname: null,
    //   hash: null,
    //   search: '?callback=getremotedata',
    //   query: 'callback=getremotedata',
    //   pathname: '/',
    //   path: '/?callback=getremotedata',
    //   href: '/?callback=getremotedata' }
    // 對象結構賦值得到query是一個對象
    const {pathname: url, query} = urlModule.parse(req.url, true)
    if (url === '/') {
        var data = {
            name: '大毛',
            age: 18,
            gender: '未知'
        };
        // 解析query的請求得到前端發送的函數名稱,加上括號調用此函數,函數里加實參servedata返回
        var scripteStr = `${query.callback}(${JSON.stringify(data)})`
        console.log(scripteStr)
        res.end(scripteStr)
    } else {
        res.end('404')
    }
});
server.listen('3999', function () {
    console.log('server is running 3999')
})

這樣前端發送請求,無論回調是什么,后端都會返回回調加data數據,就實現了跨域請求啦。

感謝你能夠認真閱讀完這篇文章,希望小編分享JSONP跨域請求的示例分析內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

平阳县| 望江县| 万山特区| 台湾省| 南皮县| 常宁市| 桐梓县| 汨罗市| 铜山县| 抚顺县| 九台市| 延安市| 诸城市| 灵丘县| 沐川县| 车险| 随州市| 吴桥县| 南昌市| 阳朔县| 巴马| 蒙山县| 墨江| 乐安县| 甘谷县| 金寨县| 牡丹江市| 沅陵县| 宜黄县| 靖宇县| 金门县| 新余市| 固阳县| 邯郸市| 达日县| 安阳县| 沙河市| 揭东县| 浮山县| 大姚县| 井陉县|