温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

Yii2中如何集成GraphQL

发布时间:2024-11-17 13:13:10 来源:亿速云 阅读:81 作者:小樊 栏目:编程语言

在 Yii2 中集成 GraphQL,你可以使用 “goetas-webservices/graphql” 这个扩展包。以下是集成步骤:

  1. 安装扩展包:

使用 Composer 安装 “goetas-webservices/graphql” 扩展包:

composer require goetas-webservices/graphql
  1. 配置 Yii2 项目:

在 Yii2 项目的配置文件(例如 config/web.php)中,添加 GraphQL 模块的配置:

'components' => [
    // ...
    'graphql' => [
        'class' => 'GoetasWebservices\GraphQL\GraphQL',
        'schema' => [
            'class' => 'GoetasWebservices\GraphQL\Schema\Schema',
            'document' => file_get_contents(__DIR__ . '/schema.graphql'),
        ],
    ],
    // ...
],
  1. 创建 GraphQL schema 文件:

在项目根目录下创建一个名为 “schema.graphql” 的文件,定义你的 GraphQL schema。例如:

type Query {
    hello: String
}
  1. 创建 GraphQL controller 和 action:

在 Yii2 项目的 controllers 目录下创建一个名为 “GraphQLController.php” 的文件,添加以下内容:

<?php

namespace app\controllers;

use yii\web\Controller;
use GoetasWebservices\GraphQL\Server\GraphQLController as BaseGraphQLController;
use GoetasWebservices\GraphQL\Model\Request as GraphQLRequest;
use GoetasWebservices\GraphQL\Model\Response as GraphQLResponse;

class GraphQLController extends BaseGraphQLController
{
    public function actions()
    {
        return [
            'index' => [
                'class' => 'actions\IndexAction',
                'query' => '{ hello }',
            ],
        ];
    }
}

在 controllers 目录下创建一个名为 “actions” 的文件夹,并在其中创建一个名为 “IndexAction.php” 的文件,添加以下内容:

<?php

namespace app\actions;

use GoetasWebservices\GraphQL\Server\Action\AbstractAction;
use GoetasWebservices\GraphQL\Model\Request as GraphQLRequest;
use GoetasWebservices\GraphQL\Model\Response as GraphQLResponse;

class IndexAction extends AbstractAction
{
    public function execute(GraphQLRequest $request, GraphQLResponse $response)
    {
        $response->setResult([
            'hello' => 'Hello, GraphQL!',
        ]);
    }
}
  1. 测试 GraphQL API:

现在你可以通过访问 “/graphql” 路径来测试你的 GraphQL API。你应该能看到如下响应:

{
    "data": {
        "hello": "Hello, GraphQL!"
    }
}

这就是在 Yii2 中集成 GraphQL 的基本步骤。你可以根据自己的需求进一步扩展和定制 GraphQL schema 和 controller。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI