2017-09-06 25 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

你確定你需要總計嗎? Docs表示bytesReceived是'迄今收到的這個表單的字節數量.'所以它聽起來像已經是一個「總數」https://github.com/felixge/node-formidable –

相關問題