【问题标题】:blueimp file upload from an ajax call从 ajax 调用上传 blueimp 文件
【发布时间】:2014-09-17 13:06:10
【问题描述】:

也许这是构建它的错误方法,但我有很多信息被提供给我的网页,所以我一直在根据用户使用 Ajax 的需要提取信息。我想检索的元素之一是 blueimp 文件上传器。除了我尝试添加文件时从控制台收到的消息之外,一切似乎都很好。

未捕获的类型错误:无法读取未定义的属性“parseMetaData”

处理图像出现,但随后……什么也没有。

如果有人能告诉我为什么我会收到此错误,以及如何解决它,我将非常感激。

Ajax 写入屏幕的内容

在标题中

<!-- Bootstrap styles -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<!-- Generic page styles -->
<link rel="stylesheet" href="fileUpload/css/style.css">
<!-- blueimp Gallery styles 
<link rel="stylesheet" href="//blueimp.github.io/Gallery/css/blueimp-gallery.min.css">-->
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
<link rel="stylesheet" href="fileUpload/css/jquery.fileupload.css">
<link rel="stylesheet" href="fileUpload/css/jquery.fileupload-ui.css">
 <!-- CSS adjustments for browsers with JavaScript disabled -->
<noscript><link rel="stylesheet" href="fileUpload/css/jquery.fileupload-noscript.css"></noscript>
<noscript><link rel="stylesheet" href="fileUpload/css/jquery.fileupload-ui-noscript.css"></noscript>

Ajax 输出

 
<!-- The file upload form used as target for the file upload widget -->
<form id="fileupload" action="//jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
    <!-- Redirect browsers with JavaScript disabled to the origin page -->
    <noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
    <!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
    <div class="row fileupload-buttonbar">
        <div class="col-lg-7">
            <!-- The fileinput-button span is used to style the file input field as button -->
            <span class="btn btn-success fileinput-button">
                <i class="glyphicon glyphicon-plus"></i>
                <span>Add files...</span>
                <input type="file" name="files[]" multiple>
            </span>
            <button type="submit" class="btn btn-primary start">
                <i class="glyphicon glyphicon-upload"></i>
                <span>Start upload</span>
            </button>
            <button type="reset" class="btn btn-warning cancel">
                <i class="glyphicon glyphicon-ban-circle"></i>
                <span>Cancel upload</span>
            </button>
            <button type="button" class="btn btn-danger delete">
                <i class="glyphicon glyphicon-trash"></i>
                <span>Delete</span>
            </button>
            <input type="checkbox" class="toggle">
            <!-- The global file processing state -->
            <span class="fileupload-process"></span>
        </div>
        <!-- The global progress state -->
        <div class="col-lg-5 fileupload-progress fade">
            <!-- The global progress bar -->
            <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100">
                <div class="progress-bar progress-bar-success" style="width:0%;"></div>
            </div>
            <!-- The extended global progress state -->
            <div class="progress-extended"> </div>
        </div>
    </div>
    <!-- The table listing the files available for upload/download -->
    <table role="presentation" class="table table-striped"><tbody class="files"></tbody></table>
</form>

    

<!-- The template to display files available for upload -->
<script id="template-upload" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
    <tr class="template-upload fade">
        <td>
            <span class="preview"></span>
        </td>
        <td>
            <p class="name">{%=file.name%}</p>
            <strong class="error text-danger"></strong>
        </td>
        <td>
            <p class="size">Processing...</p>
            <div class="progress progress-striped active" role="progressbar" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0"><div class="progress-bar progress-bar-success" style="width:0%;"></div></div>
        </td>
        <td>
            {% if (!i && !o.options.autoUpload) { %}
                <button class="btn btn-primary start" disabled>
                    <i class="glyphicon glyphicon-upload"></i>
                    <span>Start</span>
                </button>
            {% } %}
            {% if (!i) { %}
                <button class="btn btn-warning cancel">
                    <i class="glyphicon glyphicon-ban-circle"></i>
                    <span>Cancel</span>
                </button>
            {% } %}
        </td>
    </tr>
{% } %}
</script>
<!-- The template to display files available for download -->
<script id="template-download" type="text/x-tmpl">
{% for (var i=0, file; file=o.files[i]; i++) { %}
    <tr class="template-download fade">
        <td>
            <span class="preview">
                {% if (file.thumbnailUrl) { %}
                    <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" data-gallery><img src="{%=file.thumbnailUrl%}"></a>
                {% } %}
            </span>
        </td>
        <td>
            <p class="name">
                {% if (file.url) { %}
                    <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
                {% } else { %}
                    <span>{%=file.name%}</span>
                {% } %}
            </p>
            {% if (file.error) { %}
                <div><span class="label label-danger">Error</span> {%=file.error%}</div>
            {% } %}
        </td>
        <td>
            <span class="size">{%=o.formatFileSize(file.size)%}</span>
        </td>
        <td>
            {% if (file.deleteUrl) { %}
                <button class="btn btn-danger delete" data-type="{%=file.deleteType%}" data-url="{%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>
                    <i class="glyphicon glyphicon-trash"></i>
                    <span>Delete</span>
                </button>
                <input type="checkbox" name="delete" value="1" class="toggle">
            {% } else { %}
                <button class="btn btn-warning cancel">
                    <i class="glyphicon glyphicon-ban-circle"></i>
                    <span>Cancel</span>
                </button>
            {% } %}
        </td>
    </tr>
{% } %}
</script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
<script src="fileUpload/js/vendor/jquery.ui.widget.js"></script>
<!-- The Templates plugin is included to render the upload/download listings -->
<script src="//blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<!-- blueimp Gallery script -->
<script src="//blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
<script src="fileUpload/js/jquery.iframe-transport.js"></script>
<!-- The basic File Upload plugin -->
<script src="fileUpload/js/jquery.fileupload.js"></script>
<!-- The File Upload processing plugin -->
<script src="fileUpload/js/jquery.fileupload-process.js"></script>
<!-- The File Upload image preview & resize plugin -->
<script src="fileUpload/js/jquery.fileupload-image.js"></script>
<!-- The File Upload audio preview plugin -->
<script src="fileUpload/js/jquery.fileupload-audio.js"></script>
<!-- The File Upload video preview plugin -->
<script src="fileUpload/js/jquery.fileupload-video.js"></script>
<!-- The File Upload validation plugin -->
<script src="fileUpload/js/jquery.fileupload-validate.js"></script>
<!-- The File Upload user interface plugin -->
<script src="fileUpload/js/jquery.fileupload-ui.js"></script>
<!-- The main application script -->
<script src="fileUpload/js/main.js"></script>
<!-- The XDomainRequest Transport is included for cross-domain file deletion for IE 8 and IE 9 -->
<!--[if (gte IE 8)&(lt IE 10)]>
<script src="js/cors/jquery.xdr-transport.js"></script>
<![endif]-->

希望这就是你所需要的。

仔细检查后,我认为这可能是导致我的一些问题的部分:

loadImageMetaData: function (data, options) {
                if (options.disabled) {
                    return data;
                }
                var that = this,
                    dfd = $.Deferred();
                loadImage.parseMetaData(data.files[data.index], function (result) {
                    $.extend(data, result);
                    dfd.resolveWith(that, [data]);
                }, options);
                return dfd.promise();
            },

【问题讨论】:

标签: php jquery ajax file-upload blueimp


【解决方案1】:

确保您没有以模态或类似方式加载 load-image-all,这是我的问题。不管我等了多久,90% 的时间我都会得到:

未捕获的类型错误:无法读取未定义的属性“parseMetaData”

另外 10% 的时间它奇迹般地起作用了......

所以,再次 - 将脚本放在主模板上是我的解决方法。

【讨论】:

  • 谢谢,我去看看。
  • 这个是正确答案!您必须确保不包含闭包中的脚本,例如将这些脚本包含在通过 ajax(或任何其他)甚至 $(document).ready() 调用动态加载的文件中...
  • @Lauri Elias,看来我需要你的帮助。看看这个:stackoverflow.com/questions/45650465/…
【解决方案2】:

尝试分别添加这些文件

<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.js"></script>
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image-ios.js"></script>
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image-orientation.js"></script>
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image-meta.js"></script>
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image-exif.js"></script>
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image-exif-map.js"></script>

-- my fault was that I should have added `https://` in front of  [BlueImp][1]  . Apologies for the same 

【讨论】:

  • 可悲的是,它仍然给我“未捕获的类型错误:无法读取未定义的属性 'parseMetaData'”并停止。你碰巧知道 parseMetaData 是/做/配置了什么吗?
  • 如果您包含加载图像 Exif 解析器扩展,则 parseMetaData 回调数据包含附加属性 exif,如果可以在给定图像中找到 Exif 数据。 exif 对象存储解析后的 Exif 标签。直接来自github.com/blueimp/JavaScript-Load-Image
  • 感谢您的所有帮助,但您所说的超出了我对 jquery 和此脚本的了解。我已经探索、测试和重新测试,直到我脸色发青,仍然没有喜悦,所以我想我会在不从 ajax 中提取的情况下运行脚本。我知道它对我有用。如果我能直接向您展示我正在做的事情,我知道您会在短时间内完成它,但自然它会让您访问我的雇主不希望在公共领域获得的各种东西。谢谢你的一切。
  • 没有问题。请告诉我是否可以提供任何帮助。
  • 我想做同样的事情。即使我不能真正触发我自己的 AJAX 调用,我还是能够随意触发 data.submit()。如果你想要一个例子,请告诉我。
【解决方案3】:

jquery.fileuploader-image 接收到 loadImage(大约第 41 行):

}(function ($, loadImage) {

如果在该脚本之前没有包含 load-image.all.min.js,则会发生此错误(大约第 275 行):

loadImage.parseMetaData

【讨论】:

猜你喜欢
  • 2013-04-29
  • 2020-01-19
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多