4
1

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.

iOSのWebViewでjsが動かないよどうしよう

Last updated at Posted at 2017-01-19

#WebViewで表示したページ内のjsが動かなくなってしもた。

答えは簡単ですた。
そもそもソースが読み込めてなかった。
http通信が許可されてなかった。

html側を変える

WebView内のscript呼び出し部分を
src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
から
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"
に変えたら無事動きました。

アプリ側を変える

NSAppTransportSecurityの設定でhttpを許可してあげましょう。
NSAppTransportSecurityをつくり、
keyをNSAllowsArbitraryLoads、valueをtrueにしてあげればhttpが通るようになります。

もしくは
NSExceptionDomainsで一つ一つ設定してあげるのもよいでしょう。
こっちのがいいですかね。

以上です。
お粗末様でした。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?