没有代理,代理错误

xhr.js?b9e2:210 GET http://localhost:9001/apis/user/validate/code 404 (Not Found)

解决方案:

在vue.config,js文件里面配置代理

module.exports = {
    //关闭lint检查
    lintOnSave:false,
    // 配置项目页面
    pages:{
        index:{
            //指定html文件路径
            template:'public/index.html',
            //指定项目的入口实例
            entry:'src/index.js'
        }
    },
   // 配置服务器选项,实际上是给webpack-dev-server(webpack的开发服务器)来进行配置
    devServer:{
        //端口
        port:9000,
        //使用默认浏览器打开项目
        open:true,

        //配置代理
        proxy:{
            '/apis':{
                //设置代理的目标
                target:'地址',
                //将代理中的多余字段/apis替换为空
                pathRewrite:{'/apis':''}
            }
        }
    }
}

Logo

前往低代码交流专区

更多推荐