Ionic 5获取Slim API的请求

问题描述 投票:0回答:1

我想从我的Ionic应用程序向使用Slim Framework的API构建获取请求。

这是API的代码:

<?php
header('Access-Control-Allow-Origin: *');
header('Content-Type: application/json');
?>
<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
use Tuupola\Middleware\HttpBasicAuthentication;

require 'vendor/autoload.php';
$jwt_secret = '**************';

$app = new Slim\App;

$app->add(new Tuupola\Middleware\JwtAuthentication([
    "path" => "/api",
    "attribute" => "jwt",
    "secret" => $jwt_secret,  "error" => function ($response, $arguments) {
        $data["status"] = "error";
        $data["message"] = $arguments["message"];
        return $response
            ->withHeader("Content-Type", "application/json")
            ->withHeader("Access-Control-Allow-Origin", "*")
            ->getBody()->write(json_encode($data, JSON_UNESCAPED_SLASHES | JSON_PRETTY_PRINT));
    }
]));

$app->get('/api/hello', function (Request $request, Response $response, array $args) 
{
    $decoded = $request->getAttribute("jwt");
    $response->getBody()->write(json_encode(array("status"=> "200", "message" => "HELLO ".$decoded['uid'] ." - " . $decoded['cus'])));

    return $response;
});

$app->get('/', function (Request $request, Response $response, array $args) {
    $response->getBody()->write(json_encode(array("status"=> "200", "message" => "Welcome to the API")));

    return $response;
});

$app->run();

?>

[当我与邮递员进行测试时,API可以正常工作。但是,当我尝试使用Ionic中的HTTPClient调用它时,它不起作用。这是我的离子代码:

import { Component } from '@angular/core';
import { HttpClient, HttpHeaders   } from '@angular/common/http';

@Component({
  selector: 'app-home',
  templateUrl: 'home.page.html',
  styleUrls: ['home.page.scss'],
})

export class HomePage {

  constructor(private http: HttpClient) 
  {

  }

  sendRequest()
  {
    this.http.get('http://localhost/slim3',).subscribe((data)=>console.log(data));
  }

}

错误消息如下::8100 / home:1已通过CORS策略阻止从源http://localhost/slim3到'http://localhost:8100'的XMLHttpRequest访问:请求的资源上没有'Access-Control-Allow-Origin'头。

core.js:6014错误HttpErrorResponse。{标题:HttpHeaders,状态:0,statusText:“未知错误”,URL:“ http://localhost/slim3”,确定:false,...}

我该如何解决?谢谢!

php angular typescript ionic-framework slim
1个回答
0
投票

您必须在Slim Framework中启用CORS(What is CORS?)。检查http://www.slimframework.com/docs/v3/cookbook/enable-cors.html

$app->run();之前添加此内容(用您的URL替换http://mysite,包括端口)

$app->options('/{routes:.+}', function ($request, $response, $args) {
    return $response;
});

$app->add(function ($req, $res, $next) {
    $response = $next($req, $res);
    return $response
            ->withHeader('Access-Control-Allow-Origin', 'http://mysite')
            ->withHeader('Access-Control-Allow-Headers', 'X-Requested-With, Content-Type, Accept, Origin, Authorization')
            ->withHeader('Access-Control-Allow-Methods', 'GET, POST, PUT, DELETE, PATCH, OPTIONS');
});
© www.soinside.com 2019 - 2024. All rights reserved.