我正在构建的应用程序的一个功能允许用户上传像facebook,twitter和quora上的个人资料图片。
似乎multer用于处理从表单上传的信息,并且它应该使用GRidFS存储在文件存储系统中。我已经完成了文件上传部分。
如何存储图像以便用户可以访问它们?
{{1}}
答案 0 :(得分:0)
我能够在不使用GridF的情况下解决这个问题。只需使用multer上传到上传文件夹,并为上传图像的每个用户保存mongo集合中文件的路径。
lst = [['267-10-7633', '66', '85', '74', 0], ['709-40-8165', '71', '96', '34', 0]]
# create an empty dict
new_dict = {}
# iterate through the list
for item in lst:
# key is first element in the inner list
# value is second element in the inner list
key = item[0]
value = item[1:]
new_dict[key] = value
print new_dict