( 我请求的接口是thinkphp中的接口,tp接口请求的是node那边的(请假tp接口是获取不到数据的,但是成功了200,数据为null),但是我直接请求node那边的是可以获取到数据的,我怀疑tp这边有问题,但是不知道怎么解决 )
proxyTable: {
'/api': {
target: 'http://*********.com/nearby/index.php/Home/NearbyInterface',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
},
this.$http.post('/api/showProducts', {openId: 'ohs23uMdqr0s_5T92ssm8PbzqcSg'}).then((response) => {
console.log(response);
console.log(JSON.parse(response.body));
}, (response) => {
console.log(response);
});
我在post接口是没问题的
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…