FineUploader 4.0.3をセットアップしましたが、 IE8/IE9を除くすべてのブラウザでうまく動作しています。
私が得ている戻りメッセージは次のとおりです。
https://www.dropbox.com/s/t367y3zx3z2n9to/Screenshot%202013-11-05%2018.26.17.png
「アップロード応答の処理中に iframe にアクセスしようとするとエラーが発生しました (アクセスが拒否されました。)」
現在、サーバー側のコードは次のような応答を返しています。
$output = array('success' => true, 'msg' => $msg, 'filename' => $filename);
header('Content-type: text/plain');
echo htmlspecialchars(json_encode($output), ENT_NOQUOTES);
どんな援助でも大歓迎です。
以下の更新された JS と PHP を追加する
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Headers: origin, x-requested-with, content-type, cache-control');
header("Content-Type: text/html");
$output = array('success' => true, 'msg' => $msg, 'uuid' => $uuid);
$json = json_encode($output);
echo "$json<script src=\"http://jd.loc/iframe.xss.response.js\"></script>";
JS:
debug: true,
uploaderType: 'basic',
button: $chooseFileBtn,
multiple: false,
request: {
endpoint: 'file/upload'
},
validation: {
allowedExtensions: ['jpeg', 'jpg', 'gif', 'png'],
sizeLimit: 2 * (1024 * 1024), // 2 MB
itemLimit: 1
},
私もそれを試したことに注意してください:
cors: {
expected: true
},
違いはないようでした。ありがとうございました!
また、サーバーからの正確な応答を追加します。
{"success":true,"msg":{"time":1383755346,"hash":"86dd782965cb25d4be96ccce11ae4b63","type":"image/jpg","size":40207},"uuid":"62031b35- c596-4fbe-9d11-16f50b0a8a8e"}