1
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 3 years have passed since last update.

ファイル名に日本語が含まれるとMac版Chrome76でファイルアップロードができない

Posted at

これは TOWN Advent Calendar 2019 16日目のエントリーです。

ファイル名に日本語が含まれるとMac版Chrome76でファイルアップロードができないという問題が発生したことがありました。

原因としてはPOSTメソッドのときにもService Worker と Cache API経由でリクエストをしていたためでした。

以下のようにしてGETメソッドのときだけ fetch(event.request) を呼ぶように修正しました。


self.addEventListener('fetch', (event) => {
  if (event.request.method === 'GET') { //GETリクエストだけ fetch(event.request) を呼ぶように修正
    event.respondWith(caches
      .open('cache-name')
      .then(cache => cache.match(event.request))
      .then(response =>
        response || fetch(event.request).catch(() => offlineAsset('offline.html'))));
  }
});

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