【问题标题】:blueimp / jQuery-File-Upload template upload not working in zend framework 2blueimp / jQuery-File-Upload 模板上传在 zend 框架 2 中不起作用
【发布时间】:2014-02-16 13:57:01
【问题描述】:

我正在尝试让 blueimp / jQuery-File-Upload 与 zend 框架 2.0 一起使用。

当我在视图脚本 (index.phtml) 的 layout.phtml 中放置表单时,一切正常! 当我使用 zend 框架 (Zend\Form\Form) 创建我的表单时,表单显示应该是这样,但模板上传不再显示。

有人可以帮我吗?我试图将脚本复制粘贴到视图中,在布局中,.. 不起作用..

这是我的视图脚本 index.phtml 的内容

<div class="container center_piece place_need">
<!-- 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="http://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>
            <!-- 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">&nbsp;</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>
</div>
<!-- Content -->
...
<!-- 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"></strong>
    </td>
    <td>
        <p class="size">Processing...</p>
        <div class="progress"></div>
    </td>
    <td>
        {% if (!i && !o.options.autoUpload) { %}
            <button class="start" disabled>Start</button>
        {% } %}
        {% if (!i) { %}
            <button class="cancel">Cancel</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">
            <a href="{%=file.url%}" title="{%=file.name%}" download="{%=file.name%}" {%=file.thumbnailUrl?'data-gallery':''%}>{%=file.name%}</a>
        </p>
        {% if (file.error) { %}
            <div><span class="error">Error</span> {%=file.error%}</div>
        {% } %}
    </td>
    <td>
        <span class="size">{%=o.formatFileSize(file.size)%}</span>
    </td>
    <td>
        <button class="delete" data-type="{%=file.deleteType%}" data-url="     {%=file.deleteUrl%}"{% if (file.deleteWithCredentials) { %} data-xhr-fields='{"withCredentials":true}'{% } %}>Delete</button>
        <input type="checkbox" name="delete" value="1" class="toggle">
    </td>
</tr>
{% } %}
</script>

【问题讨论】:

    标签: javascript zend-framework frameworks jquery-file-upload blueimp


    【解决方案1】:

    我还不能添加评论。

    您是否包含所有 js 文件?您仍然需要使用演示中的那些,并确保所有标签都匹配。 Zend 可能会更改一些标签名称,但看起来上面的代码与演示相匹配。

    <!-- The Templates plugin is included to render the upload/download listings -->
    <script src="http://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2018-05-18
      • 2015-03-06
      • 2013-10-24
      • 1970-01-01
      • 1970-01-01
      • 2015-09-13
      • 1970-01-01
      相关资源
      最近更新 更多