1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CURLを使い、Laravelに擬似Ajaxリクエストを送る

Posted at

小技メモ

通常のCURLリクエストでPOSTデータを送ると

curl -i \
   http://192.168.xxx.xxx/yyy

とかになります。

Laravel5にはRequestクラスというValidationを行ってくれる非常に便利なクラスがありますが、
Ajaxリクエスト向けに作った場合、CURLでテストをしようとすると、リダイレクトのViewが返却されてしまい、エラーメッセージが受け取れません。

そこで、こんなかんじにします。

curl -i \
	-H "X-Requested-With: XMLHttpRequest" \
   http://192.168.xxx.xxx/yyy

これで、擬似AJAXリクエストにすることができました。

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?