宝塔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';
来到这个页面在最下面粘贴上面的代码,后重启服务器就可以了
423a0b375a3f9e7444099cf1f6c1b98.png
这里有一个做好的音乐的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进行请求