手先關(guān)于跨域是什么https://baike.baidu.com/item/...
在寶塔Linux面板算對新手比較友好的服務(wù)器面板,但是也是不可以避免一些服務(wù)器常見的問題例如跨域問題:
網(wǎng)站》選擇網(wǎng)站》配置文件
解決方法
add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Credentials' 'true'; add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
來到這個頁面在醉下面粘貼上面的代碼,后重啟服務(wù)器就可以了
這里有一個做好的音樂的json數(shù)據(jù)可以測試
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進行請求