1

Blueimp jQuery File Upload File プログラムhttps://github.com/blueimp/jQuery-File-Uploadを使用しようとしています。wiki とドキュメントを検索しましたが、ダウンロード可能なファイルをフィルター処理する方法についての回答が見つかりませんでした。

認証された「保護された」領域内で使用しています。アップロードしたすべてのファイルの前に一意の ID ( UID-filename.jpg など) を追加することに成功しました。これは、認証されたセッションで使用できます。したがって、正しい UID を持つものだけを選択するだけです。

ダウンロード テーブルを表示する jquery コードは次のとおりです。

<!-- 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">-->
    <tr class="template-download ">
    {% if (file.error) { %}
        <td></td>
        <td class="name"><span>{%=file.name%}</span></td>
        <td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
        <td class="error" colspan="2"><span class="label label-important">{%=locale.fileupload.error%}</span> {%=locale.fileupload.errors[file.error] || file.error%}</td>
    {% } else { %}
        <td class="preview">{% if (file.thumbnail_url) { %}
            <a href="{%=file.url%}" title="{%=file.name%}" rel="gallery" download="{%=file.name%}"><img src="{%=file.thumbnail_url%}"></a>
        {% } %}</td>
        <td class="name">
            <a href="{%=file.url%}" title="{%=file.name%}" rel="{%=file.thumbnail_url&&'gallery'%}" download="{%=file.name%}">{%=file.name%}</a>
        </td>
        <td class="size"><span>{%=o.formatFileSize(file.size)%}</span></td>
        <td colspan="2"></td>
    {% } %}
    <td class="delete">
        <button class="btn btn-danger" data-type="{%=file.delete_type%}" data-url="{%=file.delete_url%}">
            <i class="icon-trash icon-white"></i>
            <span>{%=locale.fileupload.destroy%}</span>
        </button>
        <input type="checkbox" name="delete" value="1">
    </td>
</tr>

私は JS/Jquery の経験があまりありません。次に何をすべきかについてのアイデアをいただければ幸いです。これらのファイルをフィルタリングするための設定/オプションに詳しい人です。または、ファイルは、フィルタリングできると思われるファイル名またはパスの配列であると想定しています.PHPでは、おそらくグロブ関数を使用します.JSでこれを経験した人はいますか?

前もって感謝します、

明細書

4

1 に答える 1

1

プラグインhttp://sunnywalker.github.io/jQuery.FilterTable/を使用してください 。どのテーブルでも機能し、デプロイも簡単です。

依存関係を含める:

<script src="/path/to/jquery.js"></script>
<script src="/path/to/bindWithDelay.js"></script> <!-- optional -->
<script src="/path/to/jquery.filtertable.js"></script>
<style>
    .filter-table .quick { margin-left: 0.5em; font-size: 0.8em; text-decoration: none; }
    .fitler-table .quick:hover { text-decoration: underline; }
    td.alt { background-color: #ffc; background-color: rgba(255, 255, 0, 0.2); }
</style> <!-- or put the styling in your stylesheet -->

コードを入力します

<script>
$('table').filterTable(); //if this code appears after your tables; otherwise, include it in your document.ready() code.
</script>

わかった!幸運を!

于 2014-09-17T20:00:59.860 に答える