场景:我有以下HTML
<form action="http://example.com/nodejs/endpoint"
method="post"
enctype="multipart/form-data">
<label>
Select JSON file
<input type="file" name="json">
</label>
<input type="submit">
</form>
要求:我需要在nodejs server中解析并显示上传的json文件。如何从请求中获取文件内容?
请帮忙。提前致谢
答案 0 :(得分:2)
我可以建议你使用express和express gen它会为你的服务器做一个好的骨架,包括json解析器。