2017-09-06 13 views

답변

0

아래 코드를 사용하면 이러한 종류의 작업을 수행 할 수 있다고 생각합니다.

var sizeLimitBytes = 2000; 
form.on('progress', function(bytesReceived, bytesExpected) { 
    if(bytesReceived > sizeLimitBytes){ 
    return false; //exit the program 
    } 
}); 
+0

'bytesReceived> mySize' 인 경우 프로그램을 종료하지 않겠습니까? 'bytesReceived

+0

아하 나의 실수! @AndrewLohr 편집 완료 – turmuka

+0

총 합계가 필요하십니까? 문서 담당자는 bytesReceived가 '지금까지이 양식에 대해받은 바이트 수입니다.'라고 말하여 이미 "합계"인 것처럼 보입니다. https://github.com/felixge/node-formidable –