sql >> データベース >  >> NoSQL >> MongoDB

mean /anglejsでクライアント側からファイルが正常にダウンロードされたかどうかを検出する方法

    jQueryファイルのダウンロードを使用できます あなたの目的のためのプラグイン、それはあなたがダウンロードされたファイルを管理するためにあなたのクライアントで使うことができる簡単な例です:

    $.fileDownload('urlForYourFile')
        .done(function () { 
            alert('File download a success!'); 
            $.post('/postChatFileSend', {fileName: 'fileName'}, function(data) {
                //Check the response, if the status propery is true, the file must have been removed from the server 
            });
        })
        .fail(function() {
            alert('An error has ocurred');
        });
    

    ここにその他の例 があります




    1. Pythonでの接続を拒否するmongodb

    2. Meteor他のユーザーにメールで問い合わせる

    3. MongoEngineはインデックス(作成、更新、削除)をどのように処理しますか?

    4. 依存関係を解決しようとしています:.NET標準ライブラリをNETCoreに変更する-Microsoft.Extensions.Primitives