您好,登录后才能下订单哦!
要在ThinkPHP(TP)框架中集成GraphQL,你需要遵循以下步骤:
首先,你需要为PHP安装GraphQL库。我们将使用webonyx/graphql-php库。通过Composer安装此库:
composer require webonyx/graphql-php
接下来,你需要定义GraphQL schema,它描述了你的API的数据类型和可用查询。创建一个名为schema.graphql
的文件,并添加以下内容:
type Query {
echo(message: String!): String
}
这个简单的schema定义了一个echo
查询,它接受一个字符串参数message
,并返回一个字符串。
现在,你需要实现echo
查询的解析器。在你的项目中创建一个新的文件夹,例如graphql
,然后创建一个名为resolvers.php
的文件。在这个文件中,添加以下内容:
<?php
use GraphQL\Type\Definition\ResolveInfo;
function resolveEcho($rootValue, $args, $context, ResolveInfo $info)
{
return $args['message'];
}
这个函数将处理echo
查询的解析。
现在,你需要创建一个GraphQL服务器,它将处理客户端发送的GraphQL请求。在graphql
文件夹中创建一个名为server.php
的文件,并添加以下内容:
<?php
require_once 'vendor/autoload.php';
require_once 'resolvers.php';
use GraphQL\GraphQL;
use GraphQL\Type\Schema;
use GraphQL\Type\Definition\ObjectType;
use GraphQL\Type\Definition\Type;
$queryType = new ObjectType([
'name' => 'Query',
'fields' => [
'echo' => [
'type' => Type::string(),
'args' => [
'message' => Type::nonNull(Type::string()),
],
'resolve' => 'resolveEcho',
],
],
]);
$schema = new Schema([
'query' => $queryType,
]);
$rawInput = file_get_contents('php://input');
$input = json_decode($rawInput, true);
$query = $input['query'];
$variableValues = isset($input['variables']) ? $input['variables'] : null;
try {
$result = GraphQL::executeQuery($schema, $query, null, null, $variableValues);
$output = $result->toArray();
} catch (\Exception $e) {
$output = [
'errors' => [
[
'message' => $e->getMessage(),
],
],
];
}
header('Content-Type: application/json');
echo json_encode($output);
最后,你需要配置ThinkPHP的路由,以便将GraphQL请求指向刚刚创建的服务器。打开application/route.php
文件,并添加以下内容:
<?php
use think\facade\Route;
Route::post('graphql', function () {
require_once 'graphql/server.php';
});
现在,你已经在ThinkPHP框架中集成了GraphQL。你可以通过发送POST请求到/graphql
端点来测试你的GraphQL API。例如,使用以下请求体:
{
"query": "query { echo(message: \"Hello, world!\") }"
}
你应该会收到以下响应:
{
"data": {
"echo": "Hello, world!"
}
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。