2017-12-11 23 views
0

JavaScriptでキャンバスにpngを読み込もうとしたとき、Microsoft Edgeでこのエラーコードが表示されました。このエラーはEdgeでのみ発生しました!MS Edge:SCRIPT5022:SCRIPT5022:SecurityError

私のプロジェクトは、このように動作します:

-/index.htmlを
-/live2d.js
- /モデル(フォルダ)
---> /model.json
---> /skin.png

このmodel.jsonがモデルに必要な画像を定義し、live2d.jsmodel.jsonとミリアンペアからデータを取得モデルはアニメーション化されます。

メインドメインのインデックス(https://example.com)に表示するには、CDNドメイン(https://cdn.example.com)のリソースをロードするだけです。

あなたは左下隅にかわいいcatoonを見ることができますが、エッジに何も表示されません、あなたはコンソールでそれを確認することがFirefoxとChromeの場合

SCRIPT5022:SCRIPT5022:例外SecurityError

のFirefox & Chromeで画像CORSを有効にするには、私はMozilla's guidebook次、img.crossOrigin = "Anonymous";を設定して、それは本当にエッジを除いて、Firefoxの&クロムのために働きます!

私はこのサイトのanother question on IE10を見て、Edgeの私の問題と同じように見えるので、平均エッジはIEと同じCORS戦略を持っていますか?そして、可能ならば、カヌーンをEdge(CORS付き)で通常通りに見せるために何をすべきですか?

ご提案いただきありがとうございます。


PS。あなたはここでそれを試すことがあります。 https://u.shino.cc/stackoverflow

ステップ1:コンソールを開き

ステップ2:実行称賛:iLoveStackOverflow();

は両方のFirefox/Chromeとエッジで2つのステップを実行し、あなたは私は何を知っているかもしれません取る。

(ステップ2は、CDNドメインから新しいskin.pngをリロードされる)


ここに私のnginxのconfのだ:

server { 
listen 443 ssl; 
listen [::]:443; 
server_name cdn.xxx.xxx;  

ssl on; 

root /var/www/html; 

index index.php index.html index.htm index.nginx-debian.html; 

location/{ 
    # First attempt to serve request as file, then 
    # as directory, then fall back to displaying a 404. 
    try_files $uri $uri/ =404; 
    #try_files $uri $uri/ /index.php$is_args$args; 
    #add_header Access-Control-Allow-Origin *; 

    # enables CORS 
    if ($request_method = 'OPTIONS') { 
     add_header 'Access-Control-Allow-Origin' '*'; 
     add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; 
     # 
     # Custom headers and headers various browsers *should* be OK with but aren't 
     # 
     add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; 
     # 
     # Tell client that this pre-flight info is valid for 20 days 
     # 
     add_header 'Access-Control-Max-Age' 1728000; 
     add_header 'Content-Type' 'text/plain; charset=utf-8'; 
     add_header 'Content-Length' 0; 
     return 204; 
    } 
    if ($request_method = 'POST') { 
     add_header 'Access-Control-Allow-Origin' '*'; 
     add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; 
     add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; 
     add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; 
    } 
    if ($request_method = 'GET') { 
     add_header 'Access-Control-Allow-Origin' '*'; 
     add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS'; 
     add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; 
     add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range'; 
    } 
} 

location ~ \.php$ { 
    include snippets/fastcgi-php.conf; 
    fastcgi_pass unix:/run/php/php7.0-fpm.sock; 
} 

location ~ /\.ht { 
    deny all; 
} 
location = /favicon.ico { log_not_found off; access_log off; } 
location = /robots.txt { log_not_found off; access_log off; allow all; } 
location ~* \.(gif|ico|jpeg|jpg|png|cur|otf|woff|svg|ttf|otf|js|css)$ { 
    expires 7d; 
    log_not_found off; 
    add_header "Access-Control-Allow-Origin" "*"; 
} 

location ~ /var/www/html/wp-config.php { 
    return 404; 
} 
} 

答えて

0

はい、長い時間の後、私はそれが画像をサポートしていませエッジだと確信していますクロスオリジン、これを処理するために私はブラウザを検出するためにjsを追加します。IE/Edgeの場合、同じドメインからイメージをロードする必要があります...

関連する問題