我有一个网络应用,我需要上传更多的文件,我不想定义文件数量,只是发送一个带文件列表的JSON对象,例如:
banners: {
logo: {
photo: <image>,
name: 'some-name-here'
},
banners: [
{
photo: <image-1>,
title: 'some-title-here'
description: 'some-description-here'
},
{
photo: <image-2>,
title: 'some-title-here'
description: 'some-description-here'
}
]
}
所以,这是我的JSON,但是从控制器我必须定义这些文件,但我不知道如何从这个结构中做到这一点。我的意思是我做不到:
控制器
module.exports = {
friendlyName: 'bla bla',
description: '',
files: ['logo.photo', 'banners']
}
那么,如何在不定义文件数组中的所有mi文件的情况下支持它呢?