新建一个谷歌用户账号,并创建该账号快捷方式用以测试
在快捷方式 属性,目标中,输入:--args --disable-web-security --user-data-dir=D:temp
其中,temp为新建的目录,存放浏览器相关信息
打开浏览器,如果出现
就可以了, 这样就能进行跨域访问了
VUE ajax 跨域调用示例
<template>
<!-- 0、 -->
<div>
<div>
{{info}}
</div>
<div v-for="site in info">
{{site.name}}
</div>
</div>
</template>
<script>
export default {
name: "Ajax",
data (){
return {
info :null
}
},
mounted(){
this.$axios
// .get('https://www.runoob.com/try/ajax/demo_axios_post.php')
.get('https://roomserver-dev.netease.im/v1/api/rooms/51482099976151/members',
{
headers:{
'Content-Type': 'application/json ',
"AppKey" : '00000',
'Nonce': '100000',
"CurTime" : '1571111474',
"CheckSum" : '0000000',
}
}
)
.then(response=>(this.info=response))
.catch(function(error){
console.log(error);
});
}
}
</script>
<style scoped>
</style>