方法一
1.创建文件vue.config.js(如果没有自己创建)内容如下:
module.exports={
// 配置跨域一定要重新启动
devServer: {
proxy: {
'/ajax': {
target: 'https://m.maoyan.com',
ws: true,
changeOrigin: true
},
// '/foo': {
// target: '<other_url>'
// }
}
}
}
方法二
2.配置headers
axios({
url:`https://m.maizuo.com/gateway?cityId=${this.cityId}&pageNum=${this.current}&pageSize=10&type=1&k=1838388`,
headers:{
'X-Client-Info': '{"a":"3000","ch":"1002","v":"5.0.4","e":"1615711504577114755563521","bc":"310100"}',
'X-Host': 'mall.film-ticket.film.list'
}
}).then(res=>{
this.datalist=[...this.datalist,...res.data.data.films]//分页数据添加到后面
})