最新の Laravel 5.2 と Dingo dev/master (commit 904d4e4e) を使用した内部投稿リクエストで問題が発生しています。Get リクエストは正常に機能しますが、どこからでも (routes.php およびコントローラーから) ポスト リクエストを試行すると、「引数 1 がありません」というエラー例外が発生し続けます。
私の App Controller はすべて、次のように設定されている Base Controller を拡張します。
use Dingo\Api\Dispatcher;
use Dingo\Api\Routing\Helpers;
use Illuminate\Http\Request;
class BaseController extends Controller
{
use Helpers;
public $dispatcher;
public function __construct(Dispatcher $dispatcher)
{
$this->dispatcher = $dispatcher;
}
// My global functions (irrelevant)...
}
管理サブドメイン「modelExample」コントローラーの例:
namespace App\Http\Controllers\Admin;
use App\Http\Requests;
use App\ModelExample;
use Dingo\Api\Dispatcher;
use App\Http\Controllers\BaseController;
class AdminModelExampleController extends BaseController
{
public function __construct(Dispatcher $dispatcher)
{
parent::__construct($dispatcher);
}
/**
* Display a listing of ModelExamples.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$modelExamples = $this->dispatcher->get('model-example');
return view('admin.model-examples.index')->with(['model_examples' => $modelExamples]);
}
/**
* Store a newly created ModelExample in the DB.
*
* @param $request
* @return array
*/
public function store($request)
{
$data = $request->all();
$modelExample = $this->dispatcher->post('model-example', $data);
return $modelExample;
}
}
「modelExample」API コントローラーの例:
namespace App\Api\Controllers;
use App\Http\Requests;
use App\ModelExample;
use Illuminate\Http\Request;
use App\Http\Controllers\BaseController;
class ApiAddMediaMethodController extends BaseController
{
/**
* Return all ModelExamples.
*
* @return \Illuminate\Database\Eloquent\Collection|static[]
*/
public function index()
{
return ModelExample::all();
}
/**
* Store a newly created ModelExample in the DB.
*
* @param $request
* @return array
*/
public function store($request)
{
// I would obviously do stuff here, but for testing purposes, we'll just return...
return $request;
}
}
私のroutes.php
/*
|--------------------------------------------------------------------------
| Dingo generated router for API Routes
|--------------------------------------------------------------------------
*/
$api = app('Dingo\Api\Routing\Router');
$dispatcher = app('Dingo\Api\Dispatcher');
$api->version('v1', function ($api) {
// Set the namespace for the API_v1-specific route controllers
$api->group(['namespace' => 'App\Api\Controllers'], function ($api) {
//Model Example routes
$api->get('model-example', [
'as' => 'model-example.get',
'uses' => 'ApiModelExampleController@index'
]);
$api->post('model-example', [
'as' => 'model-example.post',
'uses' => 'ApiModelExampleController@store'
]);
});
});
/*
|--------------------------------------------------------------------------
| Application (non-API) Web Routes
|--------------------------------------------------------------------------
*/
Route::group(['middleware' => 'web'], function () {
// Bunch of regular web app routes (irrelevant)
/*
|--------------------------------------------------------------------------
| ADMIN Subdomain Routes
|--------------------------------------------------------------------------
*/
Route::group(['domain' => 'admin' . env('SESSION_DOMAIN')], function () {
// Set the namespace for the Admin Subdomain route controllers
Route::group(['namespace' => 'Admin'], function () {
Route::group(['middleware' => 'admin'], function(){
// Model Example routes
Route::resource('model-example', 'AdminModelExampleController');
}
}
}
}
Admin Controller の store メソッドで何を使用しても、次のエラーが発生します。
Missing argument 1 for App\Api\Controllers\ApiModelExampleController::store()
私が試してみました:
$modelExample = $this->dispatcher->with($data)->post('model-example');
$modelExample = $this->dispatcher->post('model-example', ['hard' => 'coded', 'just' => 'in case']);
$modelExample = $this->api->post('model-example', $data);
$modelExample = $this->api->with($data)->post('model-example');
$modelExample = $this->api->post('model-example', ['hard' => 'coded', 'just' => 'in case']);
また、テストエンドポイントを使用してルートファイルから直接試しました。すべてのミドルウェアをオフにしました...何をしても、ペイロード配列が認識されません。
これは Laravel 5.2 と 5.1 の問題ですか? 完全に明らかな何かを見逃していますか(...頻繁に起こることが知られています)?どうすればこれを解決できますか? よろしくお願いします!:-)