热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

koa2构建api出现跨域,通过koa2cors设置无效

koa2构建api,通过koa2-cors设置允许跨域,在预请求options过不去,请求状态值200,但是提示Requestheaderfieldcontent-typeis

koa2构建api,通过koa2-cors设置允许跨域,在预请求options过不去,请求状态值200,但是提示Request header field content-type is not allowed by Access-Control-Allow-Headers in preflight response.

1
2
3
url: message/send

method: post

content-type:application/json


以下是请求结构截图

以下是koa2-cors配置

1
2
3
4
5
6
7
8
 app.use(cors({

        origin: '*',

        credentials: true,

        exposeHeaders: ['WWW-Authenticate', 'Server-Authorization'],

        allowMethods: ['OPTIONS', 'GET', 'PUT', 'POST', 'DELETE'],

        allowHeaders: ['x-requested-with', 'accept', 'origin', 'content-type'],

        maxAge: 1728000

   }))


第一版本正常,第二版本就出现这个问题,而且其他接口没有问题,请求大神指点,我的配置参数是不是哪里不对呀!



推荐阅读
author-avatar
灬哭着说再见灬
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有