关于服务器:宝塔Linux面板解决跨域问题

首先对于跨域是什么https://baike.baidu.com/item/…
在宝塔Linux面板算对老手比拟敌对的服务器面板,然而也是不能够防止一些服务器常见的问题例如跨域问题:
网站》抉择网站》配置文件
解决办法

add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';

来到这个页面在最上面粘贴下面的代码,后重启服务器就能够了

这里有一个做好的音乐的json数据能够测试
http://101.200.141.4/api/musi…

juqery:
$.ajax({
    type: "get",
    url: "http://101.200.141.4/api/music.json",
    success: function (response) {
        console.log(response.name);
        console.table(response.data);
    }
});
在vue中能够装置vue-axios进行申请

评论

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理