是否有一种简单的方法可以从Dingo API响应中删除“数据”信封。
当我使用此Transformer转换用户模型时:
class UserTransformer extends EloquentModelTransformer
{
/**
* List of resources possible to include
*
* @var array
*/
protected $availableIncludes = [
'roles'
];
protected $defaultIncludes = [
'roles'
];
public function transform($model)
{
if(! $model instanceof User)
throw new InvalidArgumentException($model);
return [
'id' => $model->id,
'name' => $model->name,
'email' => $model->email
];
}
/**
* Include Roles
*
* @param User $user
* @return \League\Fractal\Resource\Item
*/
public function includeRoles(User $user)
{
$roles = $user->roles;
return $this->collection($roles, new RoleTransformer());
}
我收到了这个回复:
{
data : [
"id": 102,
"name": "Simo",
"email": "mail@outlook.com",
"roles": {
"data": [
{
"id": 1
"name": "admin"
}
]
}
}
]
}
我阅读了一些关于RESTful API的文章,其中很多人都说这种封闭式响应不是很现代(你应该使用HTTP Header)。
如何至少针对包含禁用此行为?
谢谢
答案 0 :(得分:12)
对于那些后来因为我很难做到的人,我想分享一下我是如何在我的API中使用的:
1)创建自定义序列化程序, NoDataArraySerializer.php :
namespace App\Api\V1\Serializers;
use League\Fractal\Serializer\ArraySerializer;
class NoDataArraySerializer extends ArraySerializer
{
/**
* Serialize a collection.
*/
public function collection($resourceKey, array $data)
{
return ($resourceKey) ? [ $resourceKey => $data ] : $data;
}
/**
* Serialize an item.
*/
public function item($resourceKey, array $data)
{
return ($resourceKey) ? [ $resourceKey => $data ] : $data;
}
}
2)设置新的Serializer。在 bootstrap / app.php 中,添加:
$app['Dingo\Api\Transformer\Factory']->setAdapter(function ($app) {
$fractal = new League\Fractal\Manager;
$fractal->setSerializer(new App\Api\V1\Serializers\NoDataArraySerializer);
return new Dingo\Api\Transformer\Adapter\Fractal($fractal);
});
就是这样。
现在,在您的 UserController (例如)中,您可以像这样使用它:
namespace App\Api\V1\Controllers;
use App\Api\V1\Models\User;
use App\Api\V1\Transformers\UserTransformer;
class UserController extends Controller
{
public function index()
{
$items = User::all();
return $this->response->collection($items, new UserTransformer());
}
}
响应如下:
[
{
"user_id": 1,
...
},
{
"user_id": 2,
...
}
]
或者,我想添加一个enveloppe,你只需要在Controller中设置资源键。替换:
return $this->response->collection($items, new UserTransformer());
通过
return $this->response->collection($items, new UserTransformer(), ['key' => 'users']);
响应如下:
{
"users": [
{
"user_id": 1,
...
},
{
"user_id": 2,
...
}
]
}
答案 1 :(得分:3)
了解http://fractal.thephpleague.com/serializers/#arrayserializer。他们在
时准确解释了该怎么做有时人们想要删除项目的“数据”命名空间
答案 2 :(得分:3)
YouHieng解决方案的一个补充。在Laravel 5.3及更高版本中注册NoDataArraySerializer
的首选方法是编写自定义ServiceProvider
并将逻辑添加到boot()
方法而不是bootstrap/app.php
文件中。
例如:
php artisan make:provider DingoSerializerProvider
然后:
public function boot(){
$this->app['Dingo\Api\Transformer\Factory']->setAdapter(function ($app) {
$fractal = new League\Fractal\Manager;
$fractal->setSerializer(new App\Http\Serializers\NoDataArraySerializer());
return new Dingo\Api\Transformer\Adapter\Fractal($fractal);
});
}