摘要:
####一、这是我们本次要请求的url接口地址 http://iwenwiki.com/api/blueberrypai/getBlueBerryJamInfo.php 查看页面响应信息,提示跨域有问题 ####二、解决上面跨域问题: 根目录写入以下vue.config.js // vue.conf 阅读全文
摘要:
####一、axios基本应用 from axios import 'axios' axios.get('http://iwenwiki.com/api/blueberrypai/getBlueBerryJamInfo.php') .then(res => { console.log(res) }) 阅读全文