6
4

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.

WKWebView の POST の httpBody が nil になる

Last updated at Posted at 2018-04-18

nil になるのは2つパターンがあります

WKWebView の load(_ request: URLRequest) に POSTメソッドでhttpBodyを設定したURLRequestを渡しても、 httpBodyがnilとしてリクエストされてしまう

iOS10以下で発生しているバグです。
iOS11では解決しています。

iOS10以下でも場合によっては解決策がないこともないですが、アプリのデザインを見直して解決したほうが良いかと思われます。

WKNavigationDelegate で navigationAction.request がPOSTメソッドのとき httpBody が nil になる

func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Void)

こちらは iOS11 でも引き続き nil になります。requestに介入できないようにあえてそうしているのかもしれません。

6
4
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
6
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?