使用jsonp请求本地json文件

使用jsonp解决请求本地文件跨域问题

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>判断显示内容是否存在省略号</title>
</head>

<body>
    <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
    <script>
        // 谷歌浏览器在访问本地文件时 存在跨域问题
        // $(function () {
        //     $.ajax({
        //         url: 'demo.json',
        //         type: 'get',
        //         success: function (res) {
        //             console.log(res)
        //         }
        //     })
        // })
    </script>
     <!-- // 可以使用jsonp进行跨域 不过jsonp只支持get请求 -->
 
     <script>
     function demo(res){
         console.log(res)
     }
     </script>
      <!-- 注意:引入的文件名需要和json文件中的函数名需要相同 并且引入的json文件需要写在定义函数之上 否则会读取json文件失败 -->
     <script src="./demo.json?callback=demo"></script>
</body>

</html>

json文件测试数据

 在json文件中 定义demo时 必须要有 (括号) 
demo({
    "pro":[
        {"name":"tom"},
        {"sex":"man"},
        {"job":"web"}
    ]
})
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e 4 个月前
8c391e04 7 个月前
Logo

旨在为数千万中国开发者提供一个无缝且高效的云端环境,以支持学习、使用和贡献开源项目。

更多推荐