zoukankan      html  css  js  c++  java
  • vue 跨域使用

    1. vue.config.js 文件中添加如下代码

    module.exports = {
      devServer: { 
        proxy: {
          "/api": {
            target"http://localhost:3000"//你要跨域的网址  比如  'http://news.baidu.com',
            // secure: true, // 如果是https接口,需要配置这个参数
            changeOrigintrue//这个参数是用来回避跨站问题的,配置完之后发请求时会自动修改http header里面的host,但是不会修改别的
          }
        },
      }
    }
     
     
     

    页面使用:

        axios({
          method'get',
          url'/api/user'  //url 不能是全路径 如果全局封装则baseurl设置"/
        }).then((res=> {
          console.log(res);
        }).catch((error=> {
          console.log(error);
        })
  • 相关阅读:
    Android设备驱动安装
    昨晚摆乌龙了
    生活
    SQLSTATE=57019
    IBM项目六
    不吸烟了
    清明短假
    『ExtJS』使用中需要注意的一些事(持续更新)
    『Spring.Net』IoC 容器
    『Spring.Net』为什么使用?
  • 原文地址:https://www.cnblogs.com/zhaozhenzhen/p/14231360.html
Copyright © 2011-2022 走看看