实现跨域请求
module.exports = {
devServer:{
proxy: {//配置跨域
'/api': {
target: 'https://diwang.cn/',//接口域名
secure:true,//如果是https借口,需要这个参数
ws: true,//是否允许跨域
changOrigin: true,//是否跨域
pathRewrite:{//需要rewrite
'^/api':''
}
}
}
}
}
vue.config.js文件
created(){
fetch("api/?s=App.Hello.World",{
method:"post",
body:JSON.stringify({name:'admin'}),
})
.then(result=>{
return result.json()
})
.then(data=>{
console.log(data)
})
网友评论