美文网首页
跨域访问,Access-Control-Allow-Origin

跨域访问,Access-Control-Allow-Origin

作者: 阿_贵 | 来源:发表于2018-08-08 08:47 被阅读0次

    JWT由于没有使用Cookies,Cross-Origin Resource Sharing (CORS) ,跨域的资源访问不会成为问题。

    augular6在本地执行,访问 http://localhost:4200 时出现:

    Failed to load http://www.empirecclt.com.au/public/api/heroes: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:4200' is therefore not allowed access.

    一、第一种解决方案:

    https://github.com/barryvdh/laravel-cors

    在  lavarel  所在的工程下安装

    composer require barryvdh/laravel-cors

    使用:找到  app -> Http -> Kernel.php 添加

    'api' => [

         ...

         \Barryvdh\Cors\HandleCors::class,

    ],

    二、第二种解决方案:

    chrome浏览器安装 Allow-Control-Allow-Origin: * 插件

    三、第三种解决方案:

    分析原理,ng build,将生成的dist文件夹中的文件上传到服务器public文件夹后,不会出现跨域问题

    相关文章

      网友评论

          本文标题:跨域访问,Access-Control-Allow-Origin

          本文链接:https://www.haomeiwen.com/subject/izqtbftx.html