近期一个项目有个奇怪的现象,在ios12以下的系统中,钉钉端的接口状态值status都是0,中间踩了不少坑发现,最后发现需要把域名解析header部分换成以下内容。

域名:  http://xxx.com



  location  /  {

        add_header Access-Control-Max-Age 3600;
        add_header Access-Control-Allow-Credentials true;
        add_header Access-Control-Allow-Origin $http_origin;
        add_header Access-Control-Allow-Headers
        $http_access_control_request_headers;

        if ($request_method = 'OPTIONS') {
            return 204;
        }

        #代理
        #.................

}

记录一下~

Logo

前往低代码交流专区

更多推荐