Точечный разделитель преобразуется в _
. Таким образом, вы можете иметь:
{
"data_attributes_file": "file",
"data_attributes_name": "XYZ",
"data_attributes_age": "999"
}
$request->has('data_attributes_file')
$request->has('data_attributes_name')
$request->has('data_attributes_age')
Если у вас все еще есть пустая страница или ошибка 519
, вам нужно поставить CSRF
токен в Cook ie, или кроме него.
app / Http / Middleware / VerifyCsrfToken
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;
class VerifyCsrfToken extends Middleware
{
/**
* Indicates whether the XSRF-TOKEN cookie should be set on the response.
*
* @var bool
*/
protected $addHttpCookie = true;
/**
* The URIs that should be excluded from CSRF verification.
*
* @var array
*/
protected $except = [
'*',
];
}