使用动态变量名称node.js后端

时间:2018-02-19 11:35:04

标签: javascript angularjs node.js express

我正在从angularjs应用程序上传一个图像数组来表达js后端,我正在构建像这样的formData

$scope.botSays.forEach(function(item, index) {
  if (item.activeType == '1') {
    formData.append('imageFiles' + index, item.imageFile);
  }
});

在express.js

在服务器端

req.botSays.forEach(function(item, index){
  //print the image
  console.log(req.files.imageFiles + index);
})

但我得到了NaN

0 个答案:

没有答案