Tag: 垂耳

无法使用multer从req对象访问req.files

我正尝试使用NodeJs脚本将file upload到服务器。 我正在尝试以下的事情。 HTML <md-tab label="Upload log"> <md-content class="md-padding" id="popupContainer" ng-cloak> <h4>Upload a zip file</h4> <form ng-submit="$event.preventDefault()"> <md-input-container class="md-block" flex> <label>Source</label> <md-select name="source" ng-model="log.source" ng-click="getSources()"> <md-option ng-repeat="source in sourceInfo" value="{{source.sourceCode}}">{{source.sourceName}}</md-option> </md-select> </md-input-container> <br> <md-input-container class="md-block"> <label>Select Batch</label> <input required type="number" step="any" name="rate" ng-model="log.batch" min="1" max="100"/> </md-input-container> <md-input-container class="md-block"> <label>Enter your comments about the log files</label> […]