摘要:
前段时间在做个人项目的时候,用到了nodejs服务端上传文件,现在回头把这个小结一下,作为记录。 本人上传文件时是基于express的 "multiparty" ,当然也可以使用 connect multiparty 中间件实现,但官方似乎不推荐使用 connect multiparty 中间件。废 阅读全文
摘要:
1. XMLHttpRequest(原生ajax) " " ;) function xhrSubmit() { { $(' fafafa')[0]注意这儿的写法 } var file_obj = document.getElementById('fafafa').files[0]; var fd = 阅读全文
摘要:
express默认使用jade模板,可以配置让其支持使用ejs或html模板。 1. 安装ejs 在项目根目录安装ejs. npm install ejs 2、引入ejs var ejs = require('ejs'); //我是新引入的ejs插件 3、设置html引擎 app.engine('h 阅读全文