user.js
864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
function ContModel(app){
/*
get 方法总结
参数 router,views,apis,callback
规则 router+(views|apis|callback)
*/
/*打开一个页面*/
app.get("/1","module.index");
/*根据数据接口 渲染一个页面*/
app.get("/2","moduleA.index",["UserA-login"]);
/*适配器*/
app.get("/3","moduleA.index",["UserA-login"],function(key1){
key1.userName="我修改了适配器";
return key1;
});
/*express 基本功能*/
app.get("/4",function(req,res){
/*注意 render 的View*/
res.render("moduleA.index",{});
});
/**/
app.get("/5",["UserA-login"],function(key1,req,res){
/*注意 render 的View*/
res.json(key1);
});
/*
POST 方法总结
参数 router,apis,callback
规则 router+(apis|callback)
*/
/*过滤器*/
// app.filters("/*","*",["UserA-login"],function(key1,req,res,next){
// });
}
module.exports=ContModel;