初始文件列表未显示实际文件

时间:2016-03-31 19:34:02

标签: amazon-s3 fine-uploader aws-php-sdk

我已实施initFiles以显示已上传的s3文件,但未显示实际图片缩略图。此外,我无法单击显示的默认缩略图(请参阅image)。如何查看实际图像和链接的工作原理?

我在JS片段下面

session: {
        endpoint: "http://localhost/app/ci/php-s3-server/endpoint-cors.php?filelist"
    },

来自endpoint-cors.php?filelist调用的响应是......

[{"name":"art_collage.png","uuid":"e3554aa0-c025-4653-bb71-4afe9d979f06","s3Key":"test\/e3554aa0-c025-4653-bb71-4afe9d979f06.png","s3Bucket":"kidkivetest"},{"name":"process_step_2.png","uuid":"e5d84dd7-458c-4601-9168-e16e747134d0","s3Key":"test\/e5d84dd7-458c-4601-9168-e16e747134d0.png","s3Bucket":"xx_my_bucket_xx"}]

S3存储桶结构有2个图像:

All Buckets /xx_my_bucket_xx/test
e3554aa0-c025-4653-bb71-4afe9d979f06.png
e5d84dd7-458c-4601-9168-e16e747134d0.png

1 个答案:

答案 0 :(得分:0)

如果您想在initial files list中显示缩略图,则必须为列表中的每个文件提供thumbnailUrl。例如:

[{"name":"art_collage.png","uuid":"e3554aa0-c025-4653-bb71-4afe9d979f06","s3Key":"test\/e3554aa0-c025-4653-bb71-4afe9d979f06.png","s3Bucket":"kidkivetest", "thumbnailUrl": "http://mys3bucket.com/art_collage.png"}...]