ionic2/angular2 不能存取laravel5.3 創建的api

WBOY
發布: 2023-03-01 15:52:01
原創
1200 人瀏覽過

laravel 5.3 api已經配置完成了

<code>    //category.service.ts
    private headers = new Headers({'Content-Type': 'application/json','Accept':'application/json','Authorization':'Bearer '+window.localStorage.getItem('token')});

    private heroesUrl = 'http://xingao.5188cms.com/api/user';  // URL to web api

    private handleError(error: any): Promise<any> {
      console.error('An error occurred', error); // for demo purposes only
      return Promise.reject(error.message || error);
    }
</code>
登入後複製
登入後複製

這樣去訪問,提示XMLHttpRequest cannot load http://xingao.5188cms.com/api/user. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present the requested resource. Origin 'http://localhost:8100' is therefore not allowed access.,看樣子是跨域的問題,可是我用postman是可以成功獲取到數據的

ionic2/angular2 不能存取laravel5.3 創建的api

第二步

我把連結換成了一個http://xingao.5188cms.com/test.php

<code>//test.php
<?php 
header("Access-Control-Allow-Origin: *");
$arr=['1','2'];

echo json_encode($arr);
?></code>
登入後複製
登入後複製

還是不行XMLHttpRequest cannot load http://xingao.5188cms.com/test.php. Request header field authorization is not allowed by Access-Control-Allow-Headers in preflight response.

第三步

我把連結換成一個/test.json,卻可以的

那到底是什麼原因。 。 。 。

回覆內容:

laravel 5.3 api已經配置完成了

<code>    //category.service.ts
    private headers = new Headers({'Content-Type': 'application/json','Accept':'application/json','Authorization':'Bearer '+window.localStorage.getItem('token')});

    private heroesUrl = 'http://xingao.5188cms.com/api/user';  // URL to web api

    private handleError(error: any): Promise<any> {
      console.error('An error occurred', error); // for demo purposes only
      return Promise.reject(error.message || error);
    }
</code>
登入後複製
登入後複製

這樣去訪問,提示XMLHttpRequest cannot load http://xingao.5188cms.com/api/user. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present the requested resource. Origin 'http://localhost:8100' is therefore not allowed access.,看樣子是跨域的問題,可是我用postman是可以成功獲取到數據的

ionic2/angular2 不能存取laravel5.3 創建的api

第二步

我把連結換成了一個http://xingao.5188cms.com/test.php

<code>//test.php
<?php 
header("Access-Control-Allow-Origin: *");
$arr=['1','2'];

echo json_encode($arr);
?></code>
登入後複製
登入後複製

還是不行XMLHttpRequest cannot load http://xingao.5188cms.com/test.php. Request header field authorization is not allowed by Access-Control-Allow-Headers in preflight response.

第三步

我把連結換成一個/test.json,卻可以的

那到底是什麼原因。 。 。 。

Access-Control-Allow-Origin
跨域的問題
這是瀏覽器的限制

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板