NetCommons2 파일을 업로드할 때 나타나는 대화 상자 정보

5039 단어 JavaScriptNetCommons2
이것은 구 회사의 홈페이지에서 장부를 이체한 것이다.
파일을 업로드하는 동안 업로드 프로세스가 너무 길어지면 "업로드에 실패하거나 시간이 초과될 수 있습니다. 계속하시겠습니까?"

대화상자, 그러나 사용자 정의 시 숨길 수 있는지 조사했습니다 https://github.com/netcommons/NetCommons2/blob/537e08b7a2892bacd2eed5dbac3ea45792de0f36/html/webapp/modules/common/files/js/common.js#L2451
webapp/modules/common/files/js/common.js
/*timeout_flag:0の場合、タイムアウトチェックをしない     */
/*********************************************************/
sendAttachment: function(params_obj) {
위의 매개변수를 설정하면 됩니다.

샘플 JS

    /**
     * ファイルアップロード
     */
    uploadFile: function() {

        var messageBody = new Object();
        messageBody["action"] = "custummodule_action_main_import";

        var option = new Object();
        option["param"] = messageBody;
        option["top_el"] = $(this.id);
        option["timeout_flag"] = 0;            // タイムアウトチェックをしない
        option["callbackfunc"] = function(response) {
            commonCls.alert("インポートしました。");
            commonCls.sendRefresh(this.id);
        }.bind(this);
        option["callbackfunc_error"] = function(file_list, res){
            commonCls.alert(res);
        }.bind(this);
        commonCls.sendAttachment(option);
    },
그럼 안녕히 계세요.

좋은 웹페이지 즐겨찾기