0
0

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.

ASP.NET MVCでCookieが保存されなくて困った話

Last updated at Posted at 2019-08-29

あらまし

ajaxでActionMethodを呼び出して値をCookieに保存

完了後にページ遷移させて、上記Cookieの値を参照

変更が反映されてない!

原因

AJAXはレスポンスを参照せず、正常終了したか否かしか見てなかった。
なので成功時のActionResultは以下のように返していた。

return new HttpStatusCodeResult(HttpStatusCode.OK);

対処方法

ActionResultを以下のように書き換えた。

return Json("OK");

考察

検証はしていないが、おそらくクライアントに返却するレスポンスヘッダがnew HttpStatusCodeResult(HttpStatusCode.OK)では正しく生成されておらず、Cookieの書き換えが正常に行われていなかった。
Json("OK")ではレスポンスヘッダがきちんと生成されていてCookieの書き換えが正常に行なわれていたものと思われる。

結論

気軽にActionResultにnew HttpStatusCodeResult(HttpStatusCode.OK)を返してはいけない

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?