Node.js和Express;发布404

时间:2014-10-22 19:58:39

标签: ajax node.js express

我无法让我的服务器使用node.js和express从客户端调用函数。我不需要传递数据,我只需要警告服务器它应该调用一个函数。这就是我所拥有的(在经过大量教程之后):

客户端:

$.ajax({
        type: 'POST',
        url: 'http://localhost:3001/admin',
        sucess: function() {
            console.log('sucess');
        }

服务器:

var express = require('express');
var app = express();
var server = require('http').Server(app);

app.set('port', process.env.PORT || 3001);

// view engine setup
app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'hjs');

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({
  extended: false
}));
app.use(cookieParser());
app.use(express.static(path.join(__dirname, 'public')));

app.use('/', routes);

// catch 404 and forward to error handler
app.use(function(req, res, next) {
  var err = new Error('Not Found');
  err.status = 404;
  next(err);
});

app.post('/admin', function(req, res) {
  console.log("admin refresh");
  res.send(200);
});

错误:

POST http://localhost:3001/admin 404 (Not Found) 

1 个答案:

答案 0 :(得分:6)

您的中间件订单错误。 Express按顺序宣传它们。将您的app.post('/admin...行移至未找到的中间件上。