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);
},
그럼 안녕히 계세요.
Reference
이 문제에 관하여(NetCommons2 파일을 업로드할 때 나타나는 대화 상자 정보), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/akagane99/items/268ac809b14e02de1e37텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)