egg.js vue 启用cookies传递

孤人 提交于 2020-10-01 03:20:14

在egg.js的cofig.default.js中需要配置

    security: {
      csrf: {
        enable: false,
        ignoreJSON:true
      },
      domainWhiteList: ['http://localhost:8080']
    },
    cors: {
      origin: 'http://localhost:8080',
      credentials:true,
      allowMethods: 'GET,HEAD,PUT,POST,DELETE,PATCH,OPTIONS'
    },

在vue中axios中需要添加

axios.defaults.withCredentials = true

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!