10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ef219 commit a3e8fbcCopy full SHA for a3e8fbc
app.js
@@ -8,26 +8,26 @@ app.listen(port)
8
9
console.log('imooc started on port '+port)
10
11
-add.get('/',function(req,res){
+app.get('/',function(req,res){
12
res.render('detail',{
13
title:'imooc 首页'
14
})
15
16
17
-add.get('/movie/:id',function(req,res){
+app.get('/movie/:id',function(req,res){
18
19
title:'imooc 详情页'
20
21
22
23
-add.get('/admin/movie',function(req,res){
+app.get('/admin/movie',function(req,res){
24
25
title:'imooc 后台录入页面'
26
27
28
29
-add.get('/admin/list',function(req,res){
+app.get('/admin/list',function(req,res){
30
31
title:'imooc 列表页'
32
33
-})
+})
0 commit comments