(一)Arrary中map函数的使用
map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值。
map() 方法按照原始数组元素顺序依次处理元素。
注意: map() 不会对空数组进行检测。
注意: map() 不会改变原始数组。
语法:array.map(function(currentValue,index,arr), thisValue)
(二)node中express框架的使用
注意:在目前安装express4.0+版本中已经将命令工具分离出来,需要额外安装express-generator才能使用,可以通过执行npm install express-generator -g命令来安装。
.
├── app.js
├── bin
│ └── www
├── package.json
├── public
│ ├── images
│ ├── javascripts
│ └── stylesheets
│ └── style.css
├── routes
│ ├── index.js
│ └── users.js
└── views
├── error.pug
├── index.pug
└── layout.pug
7 directories, 9 files
(三)res.write 与 res.send 与 res.json区别
res.write:write返回, 数据没有经过处理, 返回了什么就是什么。
res.send:send 返回时, 数据被处理了, 在请求头中被自动添加了, context-type 返回类型。
res.json:返回的响应头为content-Type =json.
就是相当于手动设置了下 Content-Type: application/json;
它只是告诉浏览器返回数据类型是json, 并不帮忙转换json格式,