restify 是否支持服务端上传图片?
Does restify support image upload at server side?
我正在尝试创建一个 REST API 服务器,它可以接受带有 node.js restify 的图像上传。我查看了 http://restify.com/ 上的文档,但无法确定 restify 是否支持作为服务器上传图片。
restify支持服务端上传图片吗?如果不是,可以使用哪个 node.js 模块作为服务器上传图片?
restify comes with a bundled BodyParser which is able to handle uploads (multipart/form-data
only) and allow to have a custom handler (see multipartFileHandler
option) for uploaded files read the docs on BodyParser 获取详细信息和示例。
注意,有一个 req.files 属性,它是一个 hash/object。每个值也是一个散列,它是一个路径 属性 表示上传文件的名称和位置。
我正在尝试创建一个 REST API 服务器,它可以接受带有 node.js restify 的图像上传。我查看了 http://restify.com/ 上的文档,但无法确定 restify 是否支持作为服务器上传图片。
restify支持服务端上传图片吗?如果不是,可以使用哪个 node.js 模块作为服务器上传图片?
restify comes with a bundled BodyParser which is able to handle uploads (multipart/form-data
only) and allow to have a custom handler (see multipartFileHandler
option) for uploaded files read the docs on BodyParser 获取详细信息和示例。
注意,有一个 req.files 属性,它是一个 hash/object。每个值也是一个散列,它是一个路径 属性 表示上传文件的名称和位置。