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

WKWebView でローカルファイルにアクセスできないとき

Posted at

cordova-plugin-camera などで取得した画像を読み込もうとすると「Origin null is not allowed by Access-Control-Allow-Origin.」のようなエラーが発生することがある。

// エラーが発生するコード
let img = new Image()
img.crossOrigin = 'anonymous'
img.onload = () => {

}
img.src = /* ローカルから読み込んだファイルパス */

色々と試したがプラグインをインストールするだけで簡単に解決することができた。

cordova plugin add https://github.com/TheMattRay/cordova-plugin-wkwebviewxhrfix

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